Skip to content

Commit

Permalink
Updated rabid-installer.sh to include BeautyLine icon pack.
Browse files Browse the repository at this point in the history
  • Loading branch information
LycanDarko666 committed Jun 25, 2023
1 parent 016bca5 commit af5f86c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion rabid-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ check_and_install() {
fi
}

# Check and install Awesome WM, Picom and Rofi
# Check and install Awesome WM, Picom, Rofi, and Git
check_and_install awesome
check_and_install picom
check_and_install rofi
check_and_install git

# Clone the Rofi themes collection if it doesn't exist
if [ ! -d "$HOME/.local/share/rofi/themes" ]; then
Expand All @@ -53,6 +54,11 @@ if [ ! -d "/usr/share/fonts/ubuntu-font-family" ]; then
sudo unzip "/usr/share/fonts/ubuntu-font-family/Ubuntu.zip" -d "/usr/share/fonts/ubuntu-font-family"
fi

if [ ! -d "/usr/share/icons/BeautyLine" ]; then
sudo git clone https://github.com/NOYB/icons.git /usr/share/icons/BeautyLine
sudo gtk-update-icon-cache /usr/share/icons/BeautyLine
fi

if [ ! -d "$HOME/.config/awesome" ]; then
mkdir -p "$HOME/.config/awesome"
fi
Expand Down

0 comments on commit af5f86c

Please sign in to comment.