mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
Compare commits
8 Commits
0c7acc2bdf
...
9dc1f17046
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9dc1f17046 | ||
|
|
63f9086268 | ||
|
|
40bbd3710e | ||
|
|
30e4c5ee9a | ||
|
|
4284de2b90 | ||
|
|
7fe3d55f43 | ||
|
|
06e22ad0b3 | ||
|
|
8d5f696e7e |
@ -1,5 +1,8 @@
|
||||
## CHANGELOGS
|
||||
|
||||
## 10 March 2025
|
||||
- Dropped pyprland in favor of hyprland built in tool for a drop down like terminal and Desktop magnifier
|
||||
|
||||
## 06 March 2025
|
||||
- Switched to whiptail version for Y & N questions
|
||||
- switched eza to lsd
|
||||
|
||||
14
README.md
14
README.md
@ -266,7 +266,6 @@ cd ~/Debian-Hyprland
|
||||
- [ ] sddm blackscreen when log-out
|
||||
- [ ] Installing SDDM if or any other Login Manager installed. See [`Issue 2 - SDDM`](https://github.com/JaKooLit/Debian-Hyprland/issues/2)
|
||||
- [ ] network is down or become unmanaged [`This`](https://askubuntu.com/questions/71159/network-manager-says-device-not-managed) might help
|
||||
- [ ] pyprland is a hit and miss. Drop down not working, zooming is hit and miss
|
||||
|
||||
|
||||
#### 📒 Final Notes
|
||||
@ -289,12 +288,21 @@ cd ~/Debian-Hyprland
|
||||
|
||||
- Subscribe to my Youtube Channel [YouTube](https://www.youtube.com/@Ja.KooLit)
|
||||
|
||||
- You can also buy me Coffee Through ko-fi.com or Coffee.com 🤩
|
||||
- you can also give support through coffee's or btc 😊
|
||||
|
||||
<a href='https://ko-fi.com/jakoolit' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
|
||||
[](https://ko-fi.com/jakoolit)
|
||||
|
||||
or
|
||||
|
||||
[](https://www.buymeacoffee.com/JaKooLit)
|
||||
|
||||
Or you can donate cryto on my btc wallet :)
|
||||
> 1N3MeV2dsX6gQB42HXU6MF2hAix1mqjo8i
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
#### 📹 Youtube videos (Click to view and watch the playlist) 📹
|
||||
[](https://youtube.com/playlist?list=PLDtGd5Fw5_GjXCznR0BzCJJDIQSZJRbxx&si=iaNjLulFdsZ6AV-t)
|
||||
|
||||
|
||||
@ -59,7 +59,6 @@ hypr_package_2=(
|
||||
nvtop
|
||||
pamixer
|
||||
qalculate-gtk
|
||||
vim
|
||||
)
|
||||
|
||||
# List of packages to uninstall as it conflicts with swaync or causing swaync to not function properly
|
||||
|
||||
@ -84,7 +84,7 @@ if [ -d "ags" ]; then
|
||||
fi
|
||||
|
||||
# Clone nwg-look repository with the specified tag
|
||||
if git clone --recursive -b "$ags_tag" --depth 1 https://github.com/Aylur/ags.git; then
|
||||
if git clone --recursive -b "$ags_tag" --depth=1 https://github.com/Aylur/ags.git; then
|
||||
cd ags || exit 1
|
||||
# Build and install ags
|
||||
npm install
|
||||
|
||||
@ -24,13 +24,11 @@ printf "${NOTE} Cloning and Installing ${SKY_BLUE}KooL's Hyprland Dots for Debia
|
||||
# Check if Hyprland-Dots exists
|
||||
if [ -d Hyprland-Dots-Debian ]; then
|
||||
cd Hyprland-Dots-Debian
|
||||
git stash
|
||||
git pull
|
||||
git stash apply
|
||||
git stash && git pull
|
||||
chmod +x copy.sh
|
||||
./copy.sh
|
||||
else
|
||||
if git clone --depth 1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then
|
||||
if git clone --depth=1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then
|
||||
cd Hyprland-Dots-Debian || exit 1
|
||||
chmod +x copy.sh
|
||||
./copy.sh
|
||||
|
||||
@ -36,7 +36,7 @@ if [ -d "GTK-themes-icons" ]; then
|
||||
fi
|
||||
|
||||
echo "$NOTE Cloning ${SKY_BLUE}GTK themes and Icons${RESET} repository..." 2>&1 | tee -a "$LOG"
|
||||
if git clone --depth 1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
|
||||
if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
|
||||
cd GTK-themes-icons
|
||||
chmod +x auto-extract.sh
|
||||
./auto-extract.sh
|
||||
|
||||
@ -37,7 +37,7 @@ if [ -d "$theme_name" ]; then
|
||||
fi
|
||||
|
||||
# Clone the repository
|
||||
if git clone --depth 1 "$source_theme" "$theme_name"; then
|
||||
if git clone --depth=1 "$source_theme" "$theme_name"; then
|
||||
if [ ! -d "$theme_name" ]; then
|
||||
echo "${ERROR} Failed to clone the repository." | tee -a "$LOG"
|
||||
fi
|
||||
|
||||
@ -24,7 +24,7 @@ printf "${INFO} Installing ${SKY_BLUE}Pokemon color scripts${RESET} ..."
|
||||
if [ -d "pokemon-colorscripts" ]; then
|
||||
cd pokemon-colorscripts && git pull && sudo ./install.sh && cd ..
|
||||
else
|
||||
git clone --depth 1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git &&
|
||||
git clone --depth=1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git &&
|
||||
cd pokemon-colorscripts && sudo ./install.sh && cd ..
|
||||
fi
|
||||
|
||||
|
||||
@ -75,7 +75,7 @@ NOTE: If you are installing on a VM, ensure to enable 3D acceleration else Hyprl
|
||||
|
||||
# Ask if the user wants to proceed
|
||||
if ! whiptail --title "Proceed with Installation?" \
|
||||
--yesno "Would you like to proceed?" 7 50; then
|
||||
--yesno "VERY IMPORTANT!!!\n\nYou must be able to install from source by uncommenting deb-src on /etc/apt/sources.list else script may fail to install Hyprland.\n\n\nShall we proceed?" 15 60; then
|
||||
echo -e "\n"
|
||||
echo "❌ ${INFO} You 🫵 chose ${YELLOW}NOT${RESET} to proceed. ${YELLOW}Exiting...${RESET}" | tee -a "$LOG"
|
||||
echo -e "\n"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user