diff options
author | Jesús <heckyel@hyperbola.info> | 2021-08-28 11:55:23 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-08-28 11:55:23 -0500 |
commit | 7c80d9a31d5874806c5944056888112a2157294f (patch) | |
tree | d4368959156f3b379e0d7e524d9d60cfc19838f8 /install.sh | |
parent | 545bcfd86305f6c328415e17035af9f60847b769 (diff) | |
download | i3-config-7c80d9a31d5874806c5944056888112a2157294f.tar.lz i3-config-7c80d9a31d5874806c5944056888112a2157294f.tar.xz i3-config-7c80d9a31d5874806c5944056888112a2157294f.zip |
remove termite
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 18 |
1 files changed, 7 insertions, 11 deletions
@@ -15,23 +15,23 @@ do fi ## Install dependencies if [[ $(command -v pacman) ]]; then - $root_key pacman -Syy + $root_key pacman -Syy --noconfirm # i3 base - $root_key pacman -S i3-wm i3status dmenu sysstat + $root_key pacman -S --noconfirm i3-wm i3status dmenu sysstat # i3 blocks and dependecies - $root_key pacman -S i3blocks i3lock rofi termite \ + $root_key pacman -S --noconfirm i3blocks i3lock rofi \ conky acpi scrot xfce4-terminal \ thunar tumbler feh ranger \ ttf-hack ttf-bitstream-vera xenocara-xbacklight elif [[ $(command -v apt-get) ]]; then - $root_key apt update + $root_key apt update -y # i3 base - $root_key apt install i3-wm i3status suckless-tools sysstat + $root_key apt install i3-wm i3status suckless-tools sysstat -y # i3 blocks and dependecies - $root_key apt install i3blocks i3lock rofi termite \ + $root_key apt install i3blocks i3lock rofi \ conky playerctl acpi network-manager-gnome scrot \ xfce4-terminal thunar tumbler feh ranger \ - fonts-hack-ttf ttf-bitstream-vera xbacklight + fonts-hack-ttf ttf-bitstream-vera xbacklight -y fi # Install i3config @@ -62,10 +62,6 @@ do install -m644 -v "$i" "$HOME/.local/share/fonts/" done - printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying termite-config...' '\e[m' - install -d -m755 "$HOME/.config/termite" - install -m644 -v /tmp/i3config/extra/termite "$HOME/.config/termite/config" - printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Make log directory...' '\e[m' install -d -m755 "$HOME/.config/i3/logs/" |