linutil/tabs/applications-setup/rofi-setup.sh
2024-09-16 22:10:02 -04:00

40 lines
1.5 KiB
Bash
Executable File

#!/bin/sh -e
. ../common-script.sh
installRofi() {
echo "Installing Rofi..."
if ! command_exists rofi; then
case "$PACKAGER" in
pacman)
$ESCALATION_TOOL "$PACKAGER" -S --needed --noconfirm rofi
;;
*)
$ESCALATION_TOOL "$PACKAGER" install -y rofi
;;
esac
else
echo "Rofi is already installed."
fi
}
setupRofiConfig() {
echo "Copying Rofi configuration files..."
if [ -d "$HOME/.config/rofi" ] && [ ! -d "$HOME/.config/rofi-bak" ]; then
cp -r "$HOME/.config/rofi" "$HOME/.config/rofi-bak"
fi
mkdir -p "$HOME/.config/rofi"
curl -sSLo "$HOME/.config/rofi/powermenu.sh" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/powermenu.sh
chmod +x "$HOME/.config/rofi/powermenu.sh"
curl -sSLo "$HOME/.config/rofi/config.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/config.rasi
mkdir -p "$HOME/.config/rofi/themes"
curl -sSLo "$HOME/.config/rofi/themes/nord.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/nord.rasi
curl -sSLo "$HOME/.config/rofi/themes/sidetab-nord.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/sidetab-nord.rasi
curl -sSLo "$HOME/.config/rofi/themes/powermenu.rasi" https://github.com/ChrisTitusTech/dwm-titus/raw/main/config/rofi/themes/powermenu.rasi
}
checkEnv
checkEscalationTool
installRofi
setupRofiConfig