From 4f8e544a9e7c660ee0495cdc6e00d7401761d9ff Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 22 Jan 2026 21:36:54 -0500 Subject: [PATCH] Added UWSM in case someone logins in with UWSM by mistake They won't end up with a black screen On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: 01-hypr-pkgs.sh --- install-scripts/01-hypr-pkgs.sh | 44 +++++++++++++++++---------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/install-scripts/01-hypr-pkgs.sh b/install-scripts/01-hypr-pkgs.sh index b868d71..96c05a7 100755 --- a/install-scripts/01-hypr-pkgs.sh +++ b/install-scripts/01-hypr-pkgs.sh @@ -2,7 +2,7 @@ # 💫 https://github.com/JaKooLit 💫 # # Hyprland Packages # -# edit your packages desired here. +# edit your packages desired here. # WARNING! If you remove packages here, dotfiles may not work properly. # and also, ensure that packages are present in AUR and official Arch Repo @@ -11,24 +11,24 @@ Extra=( ) -hypr_package=( +hypr_package=( #aylurs-gtk-shell bc cliphist - curl - grim - gvfs + curl + grim + gvfs gvfs-mtp hyprpolkitagent imagemagick - inxi + inxi jq kitty kvantum libspng - nano - network-manager-applet - pamixer + nano + network-manager-applet + pamixer pavucontrol playerctl python-requests @@ -37,32 +37,33 @@ hypr_package=( qt6ct qt6-svg rofi - slurp - swappy - swaync + slurp + swappy + swaync swww unzip # needed later - wallust + uwsm # In case someone selects USWM login + wallust waybar wget wl-clipboard wlogout xdg-user-dirs - xdg-utils + xdg-utils yad ) # the following packages can be deleted. however, dotfiles may not work properly hypr_package_2=( - brightnessctl + brightnessctl btop cava loupe fastfetch gnome-system-monitor - mousepad + mousepad mpv - mpv-mpris + mpv-mpris nvtop nwg-look nwg-displays @@ -84,11 +85,14 @@ uninstall=( ) ## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ## -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +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; } +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 @@ -96,8 +100,6 @@ if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then 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"