10 lines
428 B
Bash
10 lines
428 B
Bash
#!/bin/bash
|
|
|
|
if [[ $(command -v pacman) ]]; then
|
|
sudo pacman -Syy
|
|
sudo pacman -S i3blocks i3lock rofi termite dunst conky playerctl acpi network-manager-applet scrot xfce4-terminal thunar tumbler feh ranger --noconfirm
|
|
elif [[ $(command -v apt-get) ]]; then
|
|
sudo apt update
|
|
sudo apt i3blocks i3lock rofi termite dunst conky playerctl acpi network-manager-applet scrot xfce4-terminal thunar tumbler feh ranger
|
|
fi
|