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
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
# 💫 https://github.com/JaKooLit 💫 #
|
# 💫 https://github.com/JaKooLit 💫 #
|
||||||
# Hyprland Packages #
|
# Hyprland Packages #
|
||||||
|
|
||||||
# edit your packages desired here.
|
# edit your packages desired here.
|
||||||
# WARNING! If you remove packages here, dotfiles may not work properly.
|
# WARNING! If you remove packages here, dotfiles may not work properly.
|
||||||
# and also, ensure that packages are present in AUR and official Arch Repo
|
# 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
|
#aylurs-gtk-shell
|
||||||
bc
|
bc
|
||||||
cliphist
|
cliphist
|
||||||
curl
|
curl
|
||||||
grim
|
grim
|
||||||
gvfs
|
gvfs
|
||||||
gvfs-mtp
|
gvfs-mtp
|
||||||
hyprpolkitagent
|
hyprpolkitagent
|
||||||
imagemagick
|
imagemagick
|
||||||
inxi
|
inxi
|
||||||
jq
|
jq
|
||||||
kitty
|
kitty
|
||||||
kvantum
|
kvantum
|
||||||
libspng
|
libspng
|
||||||
nano
|
nano
|
||||||
network-manager-applet
|
network-manager-applet
|
||||||
pamixer
|
pamixer
|
||||||
pavucontrol
|
pavucontrol
|
||||||
playerctl
|
playerctl
|
||||||
python-requests
|
python-requests
|
||||||
@@ -37,32 +37,33 @@ hypr_package=(
|
|||||||
qt6ct
|
qt6ct
|
||||||
qt6-svg
|
qt6-svg
|
||||||
rofi
|
rofi
|
||||||
slurp
|
slurp
|
||||||
swappy
|
swappy
|
||||||
swaync
|
swaync
|
||||||
swww
|
swww
|
||||||
unzip # needed later
|
unzip # needed later
|
||||||
wallust
|
uwsm # In case someone selects USWM login
|
||||||
|
wallust
|
||||||
waybar
|
waybar
|
||||||
wget
|
wget
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
wlogout
|
wlogout
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
xdg-utils
|
xdg-utils
|
||||||
yad
|
yad
|
||||||
)
|
)
|
||||||
|
|
||||||
# the following packages can be deleted. however, dotfiles may not work properly
|
# the following packages can be deleted. however, dotfiles may not work properly
|
||||||
hypr_package_2=(
|
hypr_package_2=(
|
||||||
brightnessctl
|
brightnessctl
|
||||||
btop
|
btop
|
||||||
cava
|
cava
|
||||||
loupe
|
loupe
|
||||||
fastfetch
|
fastfetch
|
||||||
gnome-system-monitor
|
gnome-system-monitor
|
||||||
mousepad
|
mousepad
|
||||||
mpv
|
mpv
|
||||||
mpv-mpris
|
mpv-mpris
|
||||||
nvtop
|
nvtop
|
||||||
nwg-look
|
nwg-look
|
||||||
nwg-displays
|
nwg-displays
|
||||||
@@ -84,11 +85,14 @@ uninstall=(
|
|||||||
)
|
)
|
||||||
|
|
||||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
## 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
|
# Change the working directory to the parent directory of the script
|
||||||
PARENT_DIR="$SCRIPT_DIR/.."
|
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
|
# Source the global functions script
|
||||||
if ! source "$(dirname "$(readlink -f "$0")")/Global_functions.sh"; then
|
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
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Set the name of the log file to include the current date and time
|
# 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"
|
LOG="Install-Logs/install-$(date +%d-%H%M%S)_hypr-pkgs.log"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user