Add packages
This commit is contained in:
parent
4f195e3261
commit
ba6612b3fb
1 changed files with 19 additions and 0 deletions
|
@ -7,6 +7,25 @@ if [ -z "$BASE_DIR" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
# Install required packages {{{
|
||||
|
||||
if [ "$OS" = 'arch' ]; then
|
||||
sudo pacman -S --needed i3
|
||||
sudo pacman -S --needed i3-wm dunst i3blocks i3lock i3status suckless-tools
|
||||
sudo pacman -S --needed picom hsetroot rofi xsettingsd lxappearance scrot viewnior
|
||||
sudo pacman -S --needed fonts-noto fonts-mplus fonts-awesome
|
||||
elif [ "$OS" = 'debian' ]; then
|
||||
sudo apt install i3
|
||||
sudo apt install i3-wm dunst i3blocks i3lock i3status suckless-tools
|
||||
sudo apt install picom hsetroot rofi xsettingsd lxappearance scrot viewnior
|
||||
sudo apt install fonts-noto fonts-mplus fonts-awesome
|
||||
else
|
||||
echo "${RED}The OS wasn't defined. Quitting...${NC}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# }}}
|
||||
|
||||
# Add clones from GitHub {{{
|
||||
|
||||
mkdir -p ~/github_dotfiles
|
||||
|
|
Loading…
Add table
Reference in a new issue