diff options
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -20,7 +20,7 @@ do $root_key pacman -S --noconfirm i3-wm i3status dmenu sysstat # i3 blocks and dependecies $root_key pacman -S --noconfirm i3blocks i3lock rofi \ - conky acpi scrot sakura feh ranger \ + conky acpi scrot sakura feh ranger bubblewrap \ ttf-hack xenocara-xbacklight elif [[ $(command -v apt-get) ]]; then $root_key apt update -y @@ -55,6 +55,12 @@ do install -d -m755 "$HOME/.config/conky/" install -m644 -v /tmp/i3config/extra/conky.conf "$HOME/.config/conky/" + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying bubblewrap scripts...' '\e[m' + install -d -m755 "$HOME/.config/bwrap/" + for i in /tmp/i3config/bwrap/*.bash; do + install -m644 -v "$i" "$HOME/.config/bwrap/" + done + printf '%b%s%b%s%b\n' '\e[1;32m' '==> ' '\e[0m\033[1m' 'Copying FontAwesome...' '\e[m' install -d -m755 "$HOME/.local/share/fonts/" for i in /tmp/i3config/fonts/*.ttf; do |