9 lines
265 B
Plaintext
9 lines
265 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# install all dependencies for rofi to run at full capacity
|
||
|
|
||
|
rofi_pkgs=(rofi-git bitwarden-cli libnotify rofi-greenclip
|
||
|
networkmanager-dmenu-git veracrypt sshfs jmtpfs)
|
||
|
|
||
|
yay --needed --noconfirm --norebuild --removemake -S "${rofi_pkgs[@]}"
|