diff --git a/installation_scripts/arch_based_installs.sh b/installation_scripts/arch_based_installs.sh index 43d0dd4..01234f1 100644 --- a/installation_scripts/arch_based_installs.sh +++ b/installation_scripts/arch_based_installs.sh @@ -40,8 +40,8 @@ else fi echo "Installing miscellaneous things..." -if sudo pacman -S --needed curl; then - echo "${GREEN}Successfully installed curl${NC}" +if sudo pacman -S --needed curl wget; then + echo "${GREEN}Successfully installed curl and wget${NC}" else - echo "${RED}Didn't install curl${NC}" + echo "${RED}Didn't install curl and wget${NC}" fi diff --git a/installation_scripts/debian_based_installs.sh b/installation_scripts/debian_based_installs.sh index 8cb8b88..2b9f379 100644 --- a/installation_scripts/debian_based_installs.sh +++ b/installation_scripts/debian_based_installs.sh @@ -49,8 +49,8 @@ else fi echo "Installing miscellaneous things..." -if sudo pacman -S --needed curl; then - echo "${GREEN}Successfully installed curl${NC}" +if sudo apt install curl wget; then + echo "${GREEN}Successfully installed curl and wget${NC}" else - echo "${RED}Didn't install curl${NC}" + echo "${RED}Didn't install curl and wget${NC}" fi diff --git a/installation_scripts/i3.sh b/installation_scripts/i3.sh index a8e1397..d416ef7 100644 --- a/installation_scripts/i3.sh +++ b/installation_scripts/i3.sh @@ -21,7 +21,7 @@ if [ "$OS" = 'arch' ]; then elif [ "$OS" = 'debian' ]; then sudo apt install i3 sudo apt install dunst suckless-tools - sudo apt install picom hsetroot rofi xsettingsd lxappearance scrot viewnior + sudo apt install compton hsetroot rofi xsettingsd lxappearance scrot viewnior sudo apt install fonts-noto else echo "${RED}The OS wasn't defined. Quitting...${NC}" @@ -66,6 +66,9 @@ mkdir -p ~/.config if [ ! -L ~/.config/picom.conf ]; then ln -rs "$BASE_DIR"/dotfiles/picom.conf ~/.config/picom.conf 2> /dev/null fi +if [ ! -L ~/.config/compton.conf ]; then + ln -rs "$BASE_DIR"/dotfiles/picom.conf ~/.config/compton.conf 2> /dev/null +fi echo "Adding feather.ttf" mkdir -p ~/.fonts/icomoon