41 lines
2.3 KiB
Bash
41 lines
2.3 KiB
Bash
#!/bin/bash
|
|
|
|
# Get the directory of the current script
|
|
BASE_DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")/../../")
|
|
|
|
# Source helper file
|
|
source $BASE_DIR/scripts/installer/helper.sh
|
|
|
|
log_message "Installation started for utilities section"
|
|
print_info "\nStarting utilities setup..."
|
|
|
|
run_command "pacman -S --noconfirm waybar" "Install Waybar - Status Bar" "yes"
|
|
run_command "cp -r $BASE_DIR/configs/waybar /home/$SUDO_USER/.config/" "Copy Waybar config" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm tofi" "Install Tofi - Application Launcher" "yes" "no"
|
|
run_command "cp -r $BASE_DIR/configs/tofi /home/$SUDO_USER/.config/" "Copy Tofi config(s)" "yes" "no"
|
|
|
|
run_command "pacman -S --noconfirm cliphist" "Install Cliphist - Clipboard Manager" "yes"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm awww" "Install awww for wallpaper management" "yes" "no"
|
|
run_command "mkdir -p /home/$SUDO_USER/.config/assets/backgrounds && cp -r $BASE_DIR/assets/backgrounds /home/$SUDO_USER/.config/assets/" "Copy sample wallpapers to assets directory (Recommended)" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm hyprpicker" "Install Hyprpicker - Color Picker" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm hyprlock" "Install Hyprlock - Screen Locker (Must)" "yes" "no"
|
|
run_command "cp -r $BASE_DIR/configs/hypr/hyprlock.conf /home/$SUDO_USER/.config/hypr/" "Copy Hyprlock config" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm wlogout" "Install Wlogout - Session Manager" "yes" "no"
|
|
run_command "cp -r $BASE_DIR/configs/wlogout /home/$SUDO_USER/.config/ && cp -r $BASE_DIR/assets/wlogout /home/$SUDO_USER/.config/assets/" "Copy Wlogout config and assets" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm grimblast" "Install Grimblast - Screenshot tool" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm mpvpaper" "Install mpvpaper - animated/video wallpapers" "yes" "no"
|
|
|
|
run_command "yay -S --sudoloop --noconfirm hypridle" "Install Hypridle for idle management (Must)" "yes" "no"
|
|
run_command "cp -r $BASE_DIR/configs/hypr/hypridle.conf /home/$SUDO_USER/.config/hypr/" "Copy Hypridle config" "yes" "no"
|
|
|
|
run_command "pacman -S --noconfirm neovim" "Install Neovim - Code editor" "yes"
|
|
run_command "cp -r $BASE_DIR/configs/nvim /home/$SUDO_USER/.config/" "Copy Neovim config (LazyVim)" "yes" "no"
|
|
|
|
echo "------------------------------------------------------------------------" |