2021-06-12 00:16:04 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# install all dependencies for rofi to run at full capacity
|
|
|
|
|
2021-06-12 01:35:10 -04:00
|
|
|
rofi_pkgs=(rofi bitwarden-cli libnotify rofi-greenclip
|
2021-06-12 00:16:04 -04:00
|
|
|
networkmanager-dmenu-git veracrypt sshfs jmtpfs)
|
|
|
|
|
|
|
|
yay --needed --noconfirm --norebuild --removemake -S "${rofi_pkgs[@]}"
|