mirror of
https://github.com/JaKooLit/Debian-Hyprland.git
synced 2025-12-21 10:20:12 +01:00
Compare commits
2 Commits
dadfea04ba
...
6ff6a028a3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ff6a028a3 | ||
|
|
45a8cbf224 |
@ -186,14 +186,13 @@ source ~/.zshrc
|
|||||||
#### Most common question I got is, Hey Ja, Why the heck it is taking long time to install? Other distro like Arch its only a minute or two. Why here takes like forever?!?!?!
|
#### Most common question I got is, Hey Ja, Why the heck it is taking long time to install? Other distro like Arch its only a minute or two. Why here takes like forever?!?!?!
|
||||||
- Well, most of the core packages are downloaded and Build and compiled from SOURCE. Unlike Other distros, they already have prepacked binary that can just download and install.
|
- Well, most of the core packages are downloaded and Build and compiled from SOURCE. Unlike Other distros, they already have prepacked binary that can just download and install.
|
||||||
|
|
||||||
### 🛎 *** DEBIAN and UBUNTU Hyprland Dots UPDATING NOTES ***
|
## 🛎 *** DEBIAN and UBUNTU Hyprland Dots UPDATING NOTES ***
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> This is very Important for Debian and Ubuntu Dots
|
> This is very Important for Debian and Ubuntu Dots
|
||||||
- Some parts of KooL's Hyprland Dots [`LINK`](https://github.com/JaKooLit/Hyprland-Dots) are not compatible on Debian and Ubuntu especially the hyprland settings.
|
- Some parts of KooL's Hyprland Dots [`LINK`](https://github.com/JaKooLit/Hyprland-Dots) are not compatible on Debian and Ubuntu especially the hyprland settings.
|
||||||
- That is the reason the DOTS for those distro's are "fixed" and they are being pulled on the releases. This releases are NOT in any of the branches of the KooL's Hyprland Dots.
|
- That is the reason the DOTS for those distro's are "fixed" and they are being pulled on different branch of KooL Dots.
|
||||||
|
|
||||||
- for Debian and Ubuntu if you want to update from newest KooL's dots versions (main branch), after running copy.sh, you will have 100% error which will appear on top. However, Hyprland is very good in pin pointing those errors.
|
- To update your KooL's Dots follow this [WIKI](https://github.com/JaKooLit/Hyprland-Dots/wiki#--debian-and-ubuntu-hyprland-dots-updating-notes-)
|
||||||
- You can simply just remove those lines or add # on those lines. Then, it should be ok.
|
|
||||||
|
|
||||||
#### ❗ some known issues on this Installer
|
#### ❗ some known issues on this Installer
|
||||||
- some users reported that they have to install some packages. It is in the install-scripts/force-install.sh
|
- some users reported that they have to install some packages. It is in the install-scripts/force-install.sh
|
||||||
|
|||||||
@ -74,12 +74,20 @@ if git clone --depth 1 "$source_theme" "$theme_name"; then
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
# If the directory doesn't exist, create it and set up the new theme
|
|
||||||
echo "$CAT - $sddm_conf_dir not found, creating..." | tee -a "$LOG"
|
echo "$CAT - $sddm_conf_dir not found, creating..." | tee -a "$LOG"
|
||||||
sudo mkdir -p "$sddm_conf_dir" 2>&1 | tee -a "$LOG"
|
sudo mkdir -p "$sddm_conf_dir" 2>&1 | tee -a "$LOG"
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "[Theme]\nCurrent=$theme_name" | sudo tee "$sddm_conf_dir/theme.conf.user" 2>&1 | tee -a "$LOG"
|
if [ ! -f "$sddm_conf_dir/theme.conf.user" ]; then
|
||||||
|
echo -e "[Theme]\nCurrent = $theme_name" | sudo tee "$sddm_conf_dir/theme.conf.user" > /dev/null
|
||||||
|
|
||||||
|
if [ -f "$sddm_conf_dir/theme.conf.user" ]; then
|
||||||
echo "Created and configured $sddm_conf_dir/theme.conf.user with theme $theme_name" | tee -a "$LOG"
|
echo "Created and configured $sddm_conf_dir/theme.conf.user with theme $theme_name" | tee -a "$LOG"
|
||||||
|
else
|
||||||
|
echo "Failed to create $sddm_conf_dir/theme.conf.user" | tee -a "$LOG"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "$sddm_conf_dir/theme.conf.user already exists, skipping creation." | tee -a "$LOG"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Replace current background from assets
|
# Replace current background from assets
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user