added autoinstall

This commit is contained in:
davidovski 2021-10-09 22:24:22 +01:00
parent 01ced0b7ce
commit 30788f5b3d
1 changed files with 8 additions and 0 deletions

View File

@ -45,6 +45,11 @@ load () {
fi
}
install () {
PKG="yay -S "
$PKG bspwm rofi cava neofetch mpd mpv ncmpcpp vim sxhkd polybar picom rofi
}
case $1 in
"load")
load
@ -52,6 +57,9 @@ case $1 in
"save")
save
;;
"install")
install
;;
*)
echo "USAGE: $0 [load/save]"
;;