Compare commits
16 Commits
Arch-Hyprl
...
Arch-Hyprl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6a67a21a33 | ||
|
|
b6d982d168 | ||
|
|
1d812d7357 | ||
|
|
38ce478f5c | ||
|
|
527a504e83 | ||
|
|
a44b376e79 | ||
|
|
2e62542a35 | ||
|
|
5343041805 | ||
|
|
221870054e | ||
|
|
193977dcb6 | ||
|
|
c18526390d | ||
|
|
7b403cd72d | ||
|
|
9a6fce78ab | ||
|
|
0c8c829c57 | ||
|
|
2ed79c491a | ||
|
|
c1c5450c9b |
@@ -1,5 +1,11 @@
|
||||
## Changelogs
|
||||
|
||||
## 01 Fed 2025
|
||||
- added a small scripts in the assets directory to install git and non-git version of hyprland (instruction on the readme)
|
||||
|
||||
## 30 Jan 2025
|
||||
- separate AGS v1 installation separate
|
||||
|
||||
## 29 Jan 2025
|
||||
- enhanced nvidia.sh to add additional systemd-bootloader entries for nvidia
|
||||
|
||||
|
||||
BIN
Installer.png
BIN
Installer.png
Binary file not shown.
|
Before Width: | Height: | Size: 2.3 MiB After Width: | Height: | Size: 2.2 MiB |
12
README.md
12
README.md
@@ -49,7 +49,7 @@
|
||||
|
||||
<div align="center">
|
||||
|
||||
https://github.com/JaKooLit/Hyprland-Dots/assets/85185940/50d53755-0f11-45d6-9913-76039e84a2cd
|
||||
https://github.com/user-attachments/assets/49bc12b2-abaf-45de-a21c-67aacd9bb872
|
||||
|
||||
</div>
|
||||
|
||||
@@ -171,9 +171,13 @@ source ~/.zshrc
|
||||
- CD into Arch-Hyprland directory and then ran the below command.
|
||||
- i.e. `./install-scripts/gtk-themes.sh` - For reinstall GTK Themes or
|
||||
- `./install-scripts/sddm.sh` - For reinstall sddm
|
||||
|
||||
> [!IMPORTANT]
|
||||
> DO NOT cd into install-scripts directory as script will most likely to fail
|
||||
|
||||
#### 🎞️ AGS Overview DEMO
|
||||
- in case you wonder, here is a short demo of AGS overview [Youtube LINK](https://youtu.be/zY5SLNPBJTs)
|
||||
|
||||
#### 🛣️ Roadmap:
|
||||
- ~~[ ] Install zsh and oh-my-zsh without necessary steps above~~ DONE
|
||||
- [ ] possibly adding gruvbox themes, cursors, icons
|
||||
@@ -214,6 +218,12 @@ env = WLR_RENDERER_ALLOW_SOFTWARE,1
|
||||
#### 🫥 Improving performance for Older Nvidia Cards using driver 470
|
||||
- [`SEE HERE`](https://github.com/JaKooLit/Hyprland-Dots/discussions/123#discussion-6035205)
|
||||
|
||||
|
||||
#### ➕ Added Hyprland install either git or non-git version
|
||||
- on assets directory of Arch-Hyprland, you will find install scripts to assist in switching non-git and git version of hyprland
|
||||
- pretty straight forward `chmod +x actions.sh` `./actions.sh` and `1 for non-git` and `2 for git version`
|
||||
|
||||
|
||||
#### 📒 Final Notes
|
||||
- join my discord channel [`Discord`](https://discord.com/invite/9JEgZsfhex)
|
||||
- Feel free to copy, re-distribute, and use this script however you want. Would appreciate if you give me some loves by crediting my work :)
|
||||
|
||||
7
assets/hyprland-install/README
Normal file
7
assets/hyprland-install/README
Normal file
@@ -0,0 +1,7 @@
|
||||
Arch-Hyprland - Sharing a scripts to install hyprland git or non-git versions
|
||||
|
||||
Basically created this script so I can easily switch to git and non-git version of hyprland on Arch Linux
|
||||
|
||||
|
||||
chmod +x actions.sh
|
||||
./actions.sh
|
||||
57
assets/hyprland-install/actions.sh
Executable file
57
assets/hyprland-install/actions.sh
Executable file
@@ -0,0 +1,57 @@
|
||||
#!/bin/bash
|
||||
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ #
|
||||
|
||||
# Set some colors for output messages
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
INFO="$(tput setaf 4)[INFO]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
MAGENTA=$(tput setaf 5)
|
||||
WARNING=$(tput setaf 1)
|
||||
YELLOW=$(tput setaf 3)
|
||||
BLUE=$(tput setaf 4)
|
||||
RESET=$(tput sgr0)
|
||||
|
||||
|
||||
# Make all scripts in the scripts directory executable
|
||||
echo -e "${INFO} Making all files in the ${BLUE}scripts${RESET} directory executable..."
|
||||
chmod +x ./scripts/*
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
|
||||
while true; do
|
||||
echo -e "${BLUE} Please choose an option:${RESET}"
|
||||
echo -e "${YELLOW} -- 1 - Install non-git Hyprland version${RESET}"
|
||||
echo -e "${YELLOW} -- 2 - Install git Hyprland version${RESET}"
|
||||
echo -e "${MAGENTA} -- 3 - Quit${RESET}"
|
||||
|
||||
read -p "${CAT} Enter your choice [1, 2, or 3]: " choice
|
||||
|
||||
case $choice in
|
||||
1)
|
||||
printf "\n${OK} You chose ${BLUE}non-git version of Hyprland${RESET}....... executing...\n"
|
||||
echo -e "${YELLOW} Uninstalling some hyprland packages first...${RESET}"
|
||||
./scripts/uninstall.sh &&
|
||||
./scripts/install-hyprland.sh
|
||||
break
|
||||
;;
|
||||
2)
|
||||
printf "\n${OK} You chose ${BLUE}git version of Hyprland${RESET}....... executing...\n"
|
||||
echo -e "${YELLOW} Uninstalling some hyprland packages....${RESET}"
|
||||
./scripts/uninstall.sh &&
|
||||
./scripts/install-hyprland-git.sh
|
||||
break
|
||||
;;
|
||||
3)
|
||||
echo -e "${MAGENTA} You have cancel it. Good Bye!!...${RESET}"
|
||||
printf "\n%.0s" {1..2}
|
||||
break
|
||||
;;
|
||||
*)
|
||||
echo -e "\n${WARNING} There are only 3 Choices!!!! 1 or 2 or 3. Enter 1, 2, or 3.${RESET}"
|
||||
;;
|
||||
esac
|
||||
|
||||
done
|
||||
87
assets/hyprland-install/scripts/install-hyprland-git.sh
Executable file
87
assets/hyprland-install/scripts/install-hyprland-git.sh
Executable file
@@ -0,0 +1,87 @@
|
||||
#!/bin/bash
|
||||
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ #
|
||||
|
||||
# Set some colors for output messages
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
INFO="$(tput setaf 4)[INFO]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
MAGENTA="$(tput setaf 5)"
|
||||
ORANGE="$(tput setaf 214)"
|
||||
WARNING="$(tput setaf 1)"
|
||||
YELLOW="$(tput setaf 3)"
|
||||
BLUE="$(tput setaf 4)"
|
||||
RESET="$(tput sgr0)"
|
||||
|
||||
ISAUR=$(command -v yay || command -v paru)
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
|
||||
# List of packages to install / update
|
||||
packages=(
|
||||
"hyprutils-git"
|
||||
"hyprcursor-git"
|
||||
"hyprwayland-scanner-git"
|
||||
"aquamarine-git"
|
||||
"hyprgraphics-git"
|
||||
"hyprlang-git"
|
||||
"hyprland-protocols-git"
|
||||
"hyprland-qt-support-git"
|
||||
"hyprland-qtutils-git"
|
||||
"hyprland-git"
|
||||
"hyprlock-git"
|
||||
"hypridle-git"
|
||||
"xdg-desktop-portal-hyprland-git"
|
||||
"hyprpolkitagent-git"
|
||||
"pyprland"
|
||||
)
|
||||
|
||||
# rotating stars progress
|
||||
show_progress() {
|
||||
spin='-'
|
||||
while ps | grep $1 &> /dev/null; do
|
||||
echo -ne "\rInstalling ${ORANGE}$2${RESET} ... Kindly wait! $spin"
|
||||
sleep 0.3
|
||||
case $spin in
|
||||
'-') spin='\';;
|
||||
'\') spin='|';;
|
||||
'|') spin='/';;
|
||||
'/') spin='-';;
|
||||
esac
|
||||
done
|
||||
echo -en "\rInstalling ${ORANGE}$2${RESET} ... Kindly wait! .... Done!"
|
||||
}
|
||||
|
||||
# Clearing cache
|
||||
echo -n "${CAT} Recommend (choose y to all) to clear ${MAGENTA}pacman and aur helper${RESET} cache ..."
|
||||
printf "\n%.0s" {1..1}
|
||||
sudo pacman -Scc &&
|
||||
$ISAUR -Scc
|
||||
|
||||
printf "\n%.0s" {1..1}
|
||||
printf "${NOTE} Installing ${BLUE}git hyprland version${RESET}....."
|
||||
printf "\n%.0s" {1..1}
|
||||
|
||||
# Installing packages
|
||||
for package in "${packages[@]}"; do
|
||||
$ISAUR -S --noconfirm --needed "$package" &>/dev/null &
|
||||
pid=$!
|
||||
|
||||
show_progress $pid $package
|
||||
|
||||
wait $pid
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo -e "\n${OK} ${ORANGE}$package${RESET} successfully installed."
|
||||
printf "\n%.0s" {1..1}
|
||||
else
|
||||
echo -e "\n${ERROR} Failed to install ${MAGENTA}$package${RESET}"
|
||||
printf "\n%.0s" {1..1}
|
||||
fi
|
||||
done
|
||||
|
||||
printf "\n%.0s" {1..1}
|
||||
printf "${OK} Done!! Now you NEED to ${YELLOW}EXIT${RESET} Hyprland and Re-Login! Enjoy!!!!"
|
||||
printf "\n%.0s" {1..2}
|
||||
81
assets/hyprland-install/scripts/install-hyprland.sh
Executable file
81
assets/hyprland-install/scripts/install-hyprland.sh
Executable file
@@ -0,0 +1,81 @@
|
||||
#!/bin/bash
|
||||
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ #
|
||||
|
||||
# Set some colors for output messages
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
INFO="$(tput setaf 4)[INFO]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
MAGENTA="$(tput setaf 5)"
|
||||
ORANGE="$(tput setaf 214)"
|
||||
WARNING="$(tput setaf 1)"
|
||||
YELLOW="$(tput setaf 3)"
|
||||
BLUE="$(tput setaf 4)"
|
||||
RESET="$(tput sgr0)"
|
||||
|
||||
ISAUR=$(command -v yay || command -v paru)
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
|
||||
# List of packages to install / update
|
||||
packages=(
|
||||
"aquamarine"
|
||||
"hyprutils"
|
||||
"hyprcursor"
|
||||
"hyprwayland-scanner"
|
||||
"hyprgraphics"
|
||||
"hyprlang"
|
||||
"hyprland-protocols"
|
||||
"hyprland-qt-support"
|
||||
"hyprland-qtutils"
|
||||
"hyprland"
|
||||
"hyprlock"
|
||||
"hypridle"
|
||||
"xdg-desktop-portal-hyprland"
|
||||
"hyprpolkitagent"
|
||||
"pyprland"
|
||||
)
|
||||
|
||||
# rotating stars progress
|
||||
show_progress() {
|
||||
spin='-'
|
||||
while ps | grep $1 &> /dev/null; do
|
||||
echo -ne "\rInstalling ${ORANGE}$2${RESET} ... Kindly wait! $spin"
|
||||
sleep 0.3
|
||||
case $spin in
|
||||
'-') spin='\';;
|
||||
'\') spin='|';;
|
||||
'|') spin='/';;
|
||||
'/') spin='-';;
|
||||
esac
|
||||
done
|
||||
echo -en "\rInstalling ${ORANGE}$2${RESET} ... Kindly wait! .... Done!"
|
||||
}
|
||||
|
||||
printf "\n%.0s" {1..1}
|
||||
printf "${NOTE} Installing ${BLUE}non-git hyprland version${RESET}....."
|
||||
printf "\n%.0s" {1..1}
|
||||
|
||||
# Installing packages
|
||||
for package in "${packages[@]}"; do
|
||||
$ISAUR -S --noconfirm --needed "$package" &>/dev/null &
|
||||
pid=$!
|
||||
|
||||
show_progress $pid $package
|
||||
|
||||
wait $pid
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo -e "\n${OK} ${ORANGE}$package${RESET} successfully installed."
|
||||
printf "\n%.0s" {1..1}
|
||||
else
|
||||
echo -e "\n${ERROR} Failed to install ${MAGENTA}$package${RESET}"
|
||||
printf "\n%.0s" {1..1}
|
||||
fi
|
||||
done
|
||||
|
||||
printf "\n%.0s" {1..1}
|
||||
printf "${OK} Done!! Now you NEED to ${YELLOW}EXIT${RESET} Hyprland and Re-Login! Enjoy!!!!"
|
||||
printf "\n%.0s" {1..2}
|
||||
91
assets/hyprland-install/scripts/uninstall.sh
Executable file
91
assets/hyprland-install/scripts/uninstall.sh
Executable file
@@ -0,0 +1,91 @@
|
||||
#!/bin/bash
|
||||
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ #
|
||||
|
||||
# uninstalling hyprland packages
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
INFO="$(tput setaf 4)[INFO]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
MAGENTA="$(tput setaf 5)"
|
||||
WARNING="$(tput setaf 1)"
|
||||
YELLOW="$(tput setaf 3)"
|
||||
BLUE="$(tput setaf 4)"
|
||||
RESET="$(tput sgr0)"
|
||||
|
||||
|
||||
# List of packages to uninstall (including git versions)
|
||||
packages=(
|
||||
"aquamarine"
|
||||
"aquamarine-git"
|
||||
"hyprutils"
|
||||
"hyprutils-git"
|
||||
"hyprcursor"
|
||||
"hyprcursor-git"
|
||||
"hyprwayland-scanner"
|
||||
"hyprwayland-scanner-git"
|
||||
"hyprgraphics"
|
||||
"hyprgraphics-git"
|
||||
"hyprlang"
|
||||
"hyprlang-git"
|
||||
"hyprland-protocols"
|
||||
"hyprland-protocols-git"
|
||||
"hyprland-qt-support"
|
||||
"hyprland-qt-support-git"
|
||||
"hyprland-qtutils"
|
||||
"hyprland-qtutils-git"
|
||||
"hyprland"
|
||||
"hyprland-git"
|
||||
"hyprlock"
|
||||
"hyprlock-git"
|
||||
"hypridle"
|
||||
"hypridle-git"
|
||||
"xdg-desktop-portal-hyprland"
|
||||
"xdg-desktop-portal-hyprland-git"
|
||||
"hyprpolkitagent"
|
||||
"hyprpolkitagent-git"
|
||||
"pyprland"
|
||||
)
|
||||
|
||||
# Function for uninstall packages
|
||||
uninstall_package() {
|
||||
local pkg="$1"
|
||||
|
||||
if pacman -Qi "$pkg" &>> /dev/null ; then
|
||||
echo -e "${NOTE} Uninstalling $pkg ..."
|
||||
sudo pacman -Rnsdd --noconfirm "$pkg" | grep -v "error: target not found"
|
||||
|
||||
if ! pacman -Qi "$pkg" &>> /dev/null ; then
|
||||
echo -e "\e[1A\e[K${OK} $pkg was uninstalled."
|
||||
else
|
||||
echo -e "\e[1A\e[K${ERROR} $pkg failed to uninstall"
|
||||
return 1
|
||||
fi
|
||||
else
|
||||
echo -e "${NOTE} $pkg is not installed, skipping uninstallation."
|
||||
fi
|
||||
return 0
|
||||
}
|
||||
|
||||
printf "\n%s - Removing Hyprland Packages including -git versions \n" "${NOTE}"
|
||||
|
||||
# Track failures but continue with next packages
|
||||
overall_failed=0
|
||||
for PKG in "${packages[@]}"; do
|
||||
uninstall_package "$PKG"
|
||||
if [ $? -ne 0 ]; then
|
||||
|
||||
overall_failed=1
|
||||
fi
|
||||
done
|
||||
|
||||
# Remove specific configuration file since on my experience, it conflicts.
|
||||
# Dont worry, it will be reinstalled by either xdph non-git or git version
|
||||
sudo rm -rf "/usr/share/xdg-desktop-portal/hyprland-portals.conf"
|
||||
|
||||
if [ $overall_failed -eq 0 ]; then
|
||||
echo -e "${OK} All specified hyprland packages have been uninstalled."
|
||||
fi
|
||||
|
||||
printf "\n%.0s" {1..2}
|
||||
@@ -23,7 +23,7 @@ packages=(
|
||||
|
||||
# Local packages that should be in /usr/local/bin/
|
||||
local_pkgs_installed=(
|
||||
ags
|
||||
|
||||
)
|
||||
|
||||
## WARNING: DO NOT EDIT BEYOND THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING! ##
|
||||
|
||||
@@ -8,9 +8,10 @@ set -e
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
ORANGE=$(tput setaf 166)
|
||||
MAGENTA=$(tput setaf 5)
|
||||
WARNING=$(tput setaf 1)
|
||||
YELLOW=$(tput setaf 3)
|
||||
RESET=$(tput sgr0)
|
||||
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
#!/bin/bash
|
||||
# 💫 https://github.com/JaKooLit 💫 #
|
||||
# Aylur's GTK Shell v 1.8.2#
|
||||
# Aylur's GTK Shell v 1.9.0#
|
||||
# for desktop overview
|
||||
|
||||
if [[ $USE_PRESET = [Yy] ]]; then
|
||||
source ./preset.sh
|
||||
fi
|
||||
|
||||
ags=(
|
||||
typescript
|
||||
@@ -10,7 +15,8 @@ ags=(
|
||||
gjs
|
||||
gtk3
|
||||
gtk-layer-shell
|
||||
upower networkmanager
|
||||
upower
|
||||
networkmanager
|
||||
gobject-introspection
|
||||
libdbusmenu-gtk3
|
||||
libsoup3
|
||||
|
||||
@@ -12,9 +12,10 @@ LOG="install-$(date +%d-%H%M%S)_paru.log"
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
ORANGE=$(tput setaf 166)
|
||||
MAGENTA=$(tput setaf 5)
|
||||
WARNING=$(tput setaf 1)
|
||||
YELLOW=$(tput setaf 3)
|
||||
RESET=$(tput sgr0)
|
||||
|
||||
|
||||
@@ -12,9 +12,10 @@ LOG="install-$(date +%d-%H%M%S)_yay.log"
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
ORANGE=$(tput setaf 166)
|
||||
MAGENTA=$(tput setaf 5)
|
||||
WARNING=$(tput setaf 1)
|
||||
YELLOW=$(tput setaf 3)
|
||||
RESET=$(tput sgr0)
|
||||
|
||||
|
||||
13
install.sh
13
install.sh
@@ -5,9 +5,10 @@
|
||||
OK="$(tput setaf 2)[OK]$(tput sgr0)"
|
||||
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
|
||||
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
|
||||
WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
|
||||
WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
|
||||
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
|
||||
ORANGE=$(tput setaf 166)
|
||||
MAGENTA=$(tput setaf 5)
|
||||
WARNING=$(tput setaf 1)
|
||||
YELLOW=$(tput setaf 3)
|
||||
RESET=$(tput sgr0)
|
||||
|
||||
@@ -182,6 +183,8 @@ ask_yes_no "-Do you want to configure Bluetooth?" bluetooth
|
||||
printf "\n"
|
||||
ask_yes_no "-Do you want to install Thunar file manager?" thunar
|
||||
printf "\n"
|
||||
ask_yes_no "-Install AGS (aylur's gtk shell) v1 for Desktop Like Overview?" ags
|
||||
printf "\n"
|
||||
ask_yes_no "-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme?" sddm
|
||||
printf "\n"
|
||||
ask_yes_no "-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)" xdph
|
||||
@@ -220,9 +223,6 @@ execute_script "fonts.sh"
|
||||
# Install hyprland
|
||||
execute_script "hyprland.sh"
|
||||
|
||||
# Install AGS from source (older version)
|
||||
execute_script "ags.sh"
|
||||
|
||||
if [ "$nvidia" == "Y" ]; then
|
||||
execute_script "nvidia.sh"
|
||||
fi
|
||||
@@ -238,6 +238,9 @@ fi
|
||||
if [ "$thunar" == "Y" ]; then
|
||||
execute_script "thunar.sh"
|
||||
fi
|
||||
if [ "$ags" == "Y" ]; then
|
||||
execute_script "ags.sh"
|
||||
fi
|
||||
|
||||
if [ "$sddm" == "Y" ]; then
|
||||
execute_script "sddm.sh"
|
||||
|
||||
@@ -18,6 +18,8 @@ gtk_themes="Y"
|
||||
bluetooth="Y"
|
||||
###-Do you want to install Thunar file manager?
|
||||
thunar="Y"
|
||||
###-Install AGS (aylur's gtk shell) v1 for Desktop Like Overview?" ags
|
||||
ags="Y"
|
||||
###-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme?
|
||||
sddm="Y"
|
||||
###-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)
|
||||
|
||||
Reference in New Issue
Block a user