diff --git a/.config/fastfetch/config.jsonc b/.config/fastfetch/config.jsonc index dfbe1c8..fb7b8c2 100644 --- a/.config/fastfetch/config.jsonc +++ b/.config/fastfetch/config.jsonc @@ -99,11 +99,6 @@ "keyColor": "green" }, { - "type": "display", - "key": "│ └󰍹", - "keyColor": "green" - }, - { "type": "sound", "key": " AUDIO", "format": "{2}", diff --git a/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml b/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml index d861115..eaf4f3e 100644 --- a/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml +++ b/.config/xfce4/xfconf/xfce-perchannel-xml/thunar.xml @@ -11,7 +11,7 @@ - + diff --git a/.config/yadm/bootstrap b/.config/yadm/bootstrap index b54b098..bb3bdfb 100755 --- a/.config/yadm/bootstrap +++ b/.config/yadm/bootstrap @@ -1,5 +1,18 @@ #!/bin/bash +confirm() { + # call with a prompt string or use a default + read -r -p "${1} [y/N] " response + case "$response" in + [yY][eE][sS] | [yY]) + 1 + ;; + *) + 0 + ;; + esac +} + debug() { echo "Debug:" echo "XDG_SESSION_DESKTOP $XDG_SESSION_DESKTOP" @@ -9,15 +22,14 @@ CYAN='\033[0;36m' NC='\033[0m' # install dependencies -echo -e "${CYAN}# Installing dependencies (general)${NC}" -yay -S --needed neovim \ - nitrogen \ - kitty \ - btop \ - zoxide fzf \ - evremap \ - superfile \ - getnf +if confirm "Install dependencies (general)?"; then + yay -S --needed neovim \ + kitty \ + btop \ + zoxide fzf \ + evremap \ + superfile +fi if [ $XDG_SESSION_DESKTOP = "i3" ]; then echo -e "${CYAN}# Installing dependencies (for i3)${NC}"