diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap index e983a1b..ee9ca04 100755 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -1,10 +1,25 @@ #!/bin/bash -yay -S betterlockscreen \ - neovim \ - polybar \ - rofi \ - dunst \ - pulseaudio-control \ - nitrogen \ +debug() { + echo "Debug:" + echo "XDG_SESSION_DESKTOP $XDG_SESSION_DESKTOP" +} +CYAN='\033[0;36m' +NC='\033[0m' + +# install dependencies +echo -e "${CYAN}# Installing dependencies (general)${NC}" +yay -S betterlockscreen \ + neovim \ + rofi \ + dunst \ + pulseaudio-control \ + nitrogen \ + kitty \ + btop + +if [ $XDG_SESSION_DESKTOP = "i3" ]; then + echo -e "${CYAN}# Installing dependencies (for i3)${NC}" + yay -S polybar +fi