diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-08 21:02:00 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-08 21:02:00 -0500 |
| commit | a35a1c4e980081566287dd6e2510f658f046cad1 (patch) | |
| tree | 40e31c0cbee8edc0986698880824cfd07026c5c4 /config/hypr/scripts/Distro_update.sh | |
| parent | b32d5df54895bc89f139592cb2116ebeeabe73dd (diff) | |
Fixing hyprland-dots scripts
- TouchPad.sh never expands $TOUCHPAD_ENABLED
- (and doesn’t source the file that defines it), so the toggle command is
- currently doesn't work.
- Volume.sh has multiple microphone-control bugs
- bad pamixer arguments, typoed function name, invalid notification payloads
- that break mic toggling and volume feedback.
- DarkLight.sh wipes the Qt theme paths each run
- because the qt5ct/qt6ct palette variables are commented out.
- KooLsDotsUpdate.sh contains a malformed notify-send string that
- crashes the script when no local version is detected.
- Distro_update.sh runs sudo apt upgrade outside the kitty window,
- so the Debian/Ubuntu flow never finishes inside the terminal.
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/scripts/DarkLight.sh
modified: config/hypr/scripts/Distro_update.sh
modified: config/hypr/scripts/KooLsDotsUpdate.sh
modified: config/hypr/scripts/TouchPad.sh
modified: config/hypr/scripts/Volume.sh
Diffstat (limited to 'config/hypr/scripts/Distro_update.sh')
| -rwxr-xr-x | config/hypr/scripts/Distro_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hypr/scripts/Distro_update.sh b/config/hypr/scripts/Distro_update.sh index 2b3376e3..917f303b 100755 --- a/config/hypr/scripts/Distro_update.sh +++ b/config/hypr/scripts/Distro_update.sh @@ -27,7 +27,7 @@ elif command -v dnf &> /dev/null; then notify-send -i "$iDIR/ja.png" -u low 'Fedora system' 'has been updated.' elif command -v apt &> /dev/null; then # Debian-based (Debian, Ubuntu, etc.) - kitty -T update sudo apt update && sudo apt upgrade -y + kitty -T update bash -c "sudo apt update && sudo apt upgrade -y" notify-send -i "$iDIR/ja.png" -u low 'Debian/Ubuntu system' 'has been updated.' elif command -v zypper &> /dev/null; then # openSUSE-based |
