mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
• Reset Hyprland source tag default to v0.51.1. • Add sid repo and fine-grained pinning for Hyprland-related libs and tools. • Install Debian Hyprland (0.51.1+ds-1), ecosystem tools, rofi, and qml6-module-org-hyprland-style by default in install.sh. • Ensure auto-install.sh remains seamless by simply calling the updated install.sh. On branch hl-521 Your branch is up to date with 'origin/hl-521'. Changes to be committed: modified: install-scripts/01-hypr-pkgs.sh modified: install-scripts/aquamarine.sh modified: install-scripts/hyprcursor.sh modified: install-scripts/hyprgraphics.sh modified: install-scripts/hyprland.sh modified: install-scripts/hyprlang.sh modified: install-scripts/hyprutils.sh modified: install-scripts/hyprwayland-scanner.sh modified: install-scripts/rofi-wayland.sh modified: install.sh
143 lines
3.4 KiB
Bash
Executable File
143 lines
3.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# 💫 https://github.com/JaKooLit 💫 #
|
|
# Hyprland-Dots Packages #
|
|
# edit your packages desired here.
|
|
# WARNING! If you remove packages here, dotfiles may not work properly.
|
|
# and also, ensure that packages are present in Debian Official Repo
|
|
|
|
# add packages wanted here
|
|
Extra=(
|
|
|
|
)
|
|
|
|
# packages needed
|
|
hypr_package=(
|
|
cliphist
|
|
grim
|
|
gvfs
|
|
gvfs-backends
|
|
inxi
|
|
imagemagick
|
|
kitty
|
|
nano
|
|
pavucontrol
|
|
playerctl
|
|
polkit-kde-agent-1
|
|
python3-requests
|
|
python3-pip
|
|
qt5ct
|
|
qt5-style-kvantum
|
|
qt5-style-kvantum-themes
|
|
qt6ct
|
|
slurp
|
|
swappy
|
|
sway-notification-center
|
|
unzip
|
|
waybar
|
|
wget
|
|
wl-clipboard
|
|
wlogout
|
|
xdg-user-dirs
|
|
xdg-utils
|
|
yad
|
|
)
|
|
|
|
# the following packages can be deleted. however, dotfiles may not work properly
|
|
hypr_package_2=(
|
|
brightnessctl
|
|
btop
|
|
cava
|
|
fastfetch
|
|
loupe
|
|
gnome-system-monitor
|
|
mousepad
|
|
mpv
|
|
mpv-mpris
|
|
nwg-look
|
|
nwg-displays
|
|
nvtop
|
|
pamixer
|
|
qalculate-gtk
|
|
)
|
|
|
|
# packages to force reinstall
|
|
force=(
|
|
imagemagick
|
|
wayland-protocols
|
|
)
|
|
|
|
# List of packages to uninstall as it conflicts with swaync or causing swaync to not function properly
|
|
# NOTE: rofi is no longer removed here because this branch uses the Debian Wayland-capable rofi package by default.
|
|
uninstall=(
|
|
dunst
|
|
mako
|
|
cargo
|
|
)
|
|
|
|
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Change the working directory to the parent directory of the script
|
|
PARENT_DIR="$SCRIPT_DIR/.."
|
|
cd "$PARENT_DIR" || { echo "${ERROR} Failed to change directory to $PARENT_DIR"; exit 1; }
|
|
|
|
# Source the global functions script
|
|
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then
|
|
echo "Failed to source Global_functions.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# Set the name of the log file to include the current date and time
|
|
LOG="Install-Logs/install-$(date +%d-%H%M%S)_hypr-pkgs.log"
|
|
|
|
# conflicting packages removal
|
|
overall_failed=0
|
|
printf "\n%s - ${SKY_BLUE}Removing some packages${RESET} as it conflicts with KooL's Hyprland Dots \n" "${NOTE}"
|
|
for PKG in "${uninstall[@]}"; do
|
|
uninstall_package "$PKG" 2>&1 | tee -a "$LOG"
|
|
if [ $? -ne 0 ]; then
|
|
overall_failed=1
|
|
fi
|
|
done
|
|
|
|
if [ $overall_failed -ne 0 ]; then
|
|
echo -e "${ERROR} Some packages failed to uninstall. Please check the log."
|
|
fi
|
|
|
|
printf "\n%.0s" {1..1}
|
|
|
|
# Installation of main components
|
|
printf "\n%s - Installing ${SKY_BLUE}KooL's hyprland necessary packages${RESET} .... \n" "${NOTE}"
|
|
|
|
for PKG1 in "${hypr_package[@]}" "${hypr_package_2[@]}" "${Extra[@]}"; do
|
|
install_package "$PKG1" "$LOG"
|
|
done
|
|
|
|
printf "\n%.0s" {1..1}
|
|
|
|
for PKG2 in "${force[@]}"; do
|
|
re_install_package "$PKG2" "$LOG"
|
|
done
|
|
|
|
printf "\n%.0s" {1..1}
|
|
# install YAD from assets. NOTE This is downloaded from SID repo and sometimes
|
|
# Trixie is removing YAD for some strange reasons
|
|
# Check if yad is installed
|
|
if ! command -v yad &> /dev/null; then
|
|
echo "${INFO} Installing ${YELLOW}YAD from assets${RESET} ..."
|
|
sudo dpkg -i assets/yad_0.40.0-1+b2_amd64.deb
|
|
sudo apt install -f -y
|
|
echo "${INFO} ${YELLOW}YAD from assets${RESET} succesfully installed ..."
|
|
fi
|
|
|
|
printf "\n%.0s" {1..2}
|
|
|
|
# Install up-to-date Rust
|
|
echo "${INFO} Installing most ${YELLOW}up to date Rust compiler${RESET} ..."
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y 2>&1 | tee -a "$LOG"
|
|
source "$HOME/.cargo/env"
|
|
|
|
## making brightnessctl work
|
|
sudo chmod +s $(which brightnessctl) 2>&1 | tee -a "$LOG" || true
|
|
|
|
printf "\n%.0s" {1..2} |