aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Adj waybar to prevent dup starts w/waybar.serviceDon Williams10 days-13/+41
| | | | | | | | | | | | | | Some distros have waybar as service. Startup checks for that Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/Refresh.sh modified: config/hypr/scripts/ToggleWaybarTime.sh modified: config/hypr/scripts/WaybarLayout.sh
* Fixed toggleSplit layout in LUA workflowDon Williams10 days-1/+23
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/system_keybinds.lua modified: config/hypr/lua/keybind_helpers.lua modified: config/hypr/lua/user_keybinds_helper.lua
* Updated CHANGELOGDon Williams10 days-0/+4
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* fix: Keep Waybar alive when switching themes from a bar module (#96)Thomas Irgang10 days-27/+35
| | | | | | | | | | | | | | | | | | | | | | Switching Dark/Light from the Waybar module left the bar gone until the next login. DarkLight.sh is wired to a Waybar module on-click, so it runs inside waybar.service's cgroup. Its cleanup loop kills waybar, systemd tears down the whole unit, and every process in that cgroup goes with it - DarkLight.sh included, before it ever reaches Refresh.sh. Nothing is left to start the replacement bar. Refresh.sh had the same problem on its own: it killed waybar and relaunched it from a shell that had just been torn down. Drop waybar from the DarkLight.sh cleanup loop and let Refresh.sh own the restart, run as a transient systemd-run --user unit so it sits outside the caller's cgroup and survives the teardown. Fall back to setsid where systemd-run is unavailable. Detect systemd management via the unit's LoadState instead of is-enabled. WaybarStartup.sh starts the unit on demand and leaves it disabled, so is-enabled reports "disabled" for setups that are in fact systemd-managed. Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
* fix: Toggle all Waybar clock modules between 12H and 24H (#95)Thomas Irgang10 days-26/+116
| | | | | | | | | | | | | | | | | | | | | | | | | | | ToggleWaybarTime.sh matched each clock format with its own hardcoded sed pattern. Two of those patterns were missing the {:L...} locale prefix that the corresponding lines in Modules carry: Modules "format": "{:L%H:%M - %d/%b}" script "format": "{:%H:%M - %d/%b}" so clock#3 and clock#4 were never switched. clock#vertical was not covered at all, because the script only ever edited Modules and never ModulesVertical. sed -i reports no error when nothing matches, so the script still restarted Waybar and claimed success while those modules kept their previous format. Replace the 18 hardcoded patterns with a table of 12H/24H format pairs and build the sed expressions from it, so both directions are derived from the same source of truth. Add ModulesVertical to the files being edited, and list the Nerd Font glyphs as codepoints (U+F017, U+F073) rather than literal characters, which are easy to replace with a look-alike from a different Private Use range without any visible difference. Warn on stderr about formats that no longer occur in any modules file, and exit non-zero instead of restarting Waybar when a toggle changed nothing at all, so future drift surfaces instead of failing silently. Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
* Fixed Polkit to check for systemd serviceDon Williams10 days-0/+14
| | | | | | | | | | | Signed-off-by: Don Williams <Don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/scripts/Polkit.sh
* Upd `main.lua` updated depreciated API callsDon Williams10 days-20/+1496
| | | | | | | | | | | | Signed-off-by: Don Williams <Don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/yazi/plugins/yatline.yazi/main.lua new file: config/yazi/plugins/yatline.yazi/main.lua.bak-20260815-174119
* Fixed(really) ToggleOpacity and ChangeBlur.shDon Williams10 days-13/+65
| | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/UserConfigs/ENVariables.conf modified: config/hypr/scripts/ChangeBlur.sh modified: config/hypr/scripts/ToggleOpacity.sh
* Fixed GTK theme to default Adwaita-DarkDon Williams10 days-0/+3
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserConfigs/user_env.lua
* Fixed opacity keybinds add: ToggleOpacity scriptDon Williams10 days-3/+26
| | | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Keybinds.conf modified: config/hypr/configs/system_keybinds.lua modified: config/hypr/lua/keybind_helpers.lua new file: config/hypr/scripts/ToggleOpacity.sh
* Fixed duplicate keybinds on new LUA installDon Williams10 days-1/+1
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/system_keybinds.lua
* Added startup lua file for new installsDon Williams10 days-0/+17
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: new file: config/hypr/configs/system_startup.lua
* Initial copy was setting hyprlang not LUADon Williams10 days-11/+25
| | | | | | | | | | | | Fixed hyprland version check that caused issue Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: copy.sh
* Copy.sh wasn't setting LUA as default on new installDon Williams10 days-53/+60
| | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: copy.sh modified: scripts/lib_copy.sh
* Added virtual_workspaces.luaDon Williams10 days-0/+78
| | | | | | | | | | | | | | | Link workspaces in all monitors to move as one. - I.e. two monitors WS1 and WS2 are linked, then moving to next WS would be WS3, WS4 Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md new file: config/hypr/lua/virtual_workspaces.lua
* Redid alignment code wasn't workingDon Williams10 days-18/+3
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/HyprLayoutModule.sh
* More formatting fixesDon Williams10 days-4/+19
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/HyprLayoutModule.sh
* Fixed formatting is layout menuDon Williams10 days-7/+15
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/scripts/HyprLayoutModule.sh
* Added current keybinds to layout menuDon Williams10 days-1/+95
| | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/scripts/HyprLayoutModule.sh
* Adjusted waybar startup to prevent duplicate waybarsDon Williams10 days-46/+35
| | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/scripts/WaybarStartup.sh
* Fix: waybar startup/restart in FedoraDon Williams10 days-59/+54
| | | | | | | | | | | | | | | | | | | | | | | Conflicts with waybar.service when hyprland-uwsm session not selected Fixed startup config files Added gate check for AGS to remove errors when not installed Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Startup_Apps.conf modified: config/hypr/lua/startup.lua modified: config/hypr/lua/user_startup_helper.lua modified: config/hypr/scripts/DarkLight.sh modified: config/hypr/scripts/PortalHyprland.sh modified: config/hypr/scripts/Refresh.sh modified: config/hypr/scripts/ToggleWaybarTime.sh modified: config/hypr/scripts/WaybarStartup.sh modified: scripts/migrate-hypr-to-lua.sh
* Updated warning msg min version to 0.55Don Williams10 days-3/+4
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Updated lua startup to match hyprlang startup changesDon Williams10 days-2/+4
| | | | | | | | | | | | | | Changed startup sequence for waybar to reduce startup time and duplicate refersh operations Signed-off-by: Don Williams <don.e.williams@gmal.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/lua/startup.lua
* Fix: migrate script edit UserConfigs/monitors.luaDon Williams10 days-253/+72
| | | | | | | | | | | | | Also it mpw properly handles disabled monitors On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md deleted: config/hypr/hyprlock-1080p.conf modified: config/hypr/hyprlock-2k.conf modified: config/hypr/hyprlock.conf
* Fixed waybar startup issues and restartDon Williams10 days-18/+31
| | | | | | | | | | | | | | | Trimmed time and add --no-restart option to theme scripts that were causing delays and waybar restarts when not needed Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Startup_Apps.conf modified: config/hypr/scripts/ApplyThemeMode.sh modified: config/hypr/scripts/DarkLight.sh
* Trimed startup time for waybarDon Williams10 days-5/+4
| | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Startup_Apps.conf modified: config/hypr/scripts/WaybarStartup.sh
* Add .zprofile check to fix flatpak appsDon Williams10 days-0/+52
| | | | | | | | | | | | | | | | | ```sh if [ -f /etc/profile ]; then source /etc/profile fi ``` thanks to @jfabernathy for finding and reporting it On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: copy.sh modified: scripts/lib_detect.sh
* Fixed migrate script for disabled monitorsDon Williams10 days-1/+23
| | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmal.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: scripts/migrate-hypr-to-lua.sh
* Fixed Spring-curves to work with HL 0.56+Don Williams10 days-3/+10
| | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/animations/Spring-curves.conf modified: config/hypr/animations/Spring-curves.lua
* Fixed bindings for overview add ver chk to copy.shDon Williams10 days-28/+86
| | | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/configs/Keybinds.conf modified: config/hypr/configs/system_keybinds.lua modified: config/hypr/lua/keybinds.lua modified: copy.sh modified: docs/Keybinds.md
* Copy.sh defaults to LUA and migrates on updatesDon Williams10 days-0/+133
| | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: copy.sh modified: scripts/lib_copy.sh modified: scripts/lib_prompts.sh
* Fixed all RainbowBorders modes added LowCPU varientDon Williams10 days-73/+251
| | | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserScripts/RainbowBorders-low-cpu.sh modified: config/hypr/UserScripts/RainbowBorders.bak.sh modified: config/hypr/scripts/Kool_Quick_Settings.sh modified: config/hypr/scripts/Refresh.sh modified: config/hypr/scripts/RefreshNoWaybar.sh
* Fixed RainbowBorders in LUA modeDon Williams10 days-44/+159
| | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/UserScripts/RainbowBorders-low-cpu.sh modified: config/hypr/UserScripts/RainbowBorders.bak.sh
* Fixed migrate script to handle SHIFTDon Williams10 days-12/+197
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Fixed hyprview description Keybinds.confDon Williams10 days-1/+1
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Fixed duplicate bininds added docs/keybinds.mdDon Williams10 days-6/+185
| | | | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Keybinds.conf modified: config/hypr/lua/keybinds.lua new file: docs/Keybinds.md
* Updated keybinds.lua to make keybinds.confDon Williams10 days-1/+1
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Reset hyprview binding SUPERSHIFT TABDon Williams10 days-1/+1
| | | | Signed-off-by: Don Williams <don.e.williams@gmail.com>
* Changed CTRL-TAB to ALT-TAB for hyprviewDon Williams10 days-25/+13
| | | | | | | | | | | | | | ALT-TAB used in many apps Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/Keybinds.conf modified: config/hypr/lua/keybinds.lua
* waybar: brave-origin-beta iconbrockar10 days-0/+1
|
* Added script for Hyprlang config to handle LidSwitchDon Williams10 days-2/+17
| | | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserConfigs/Laptops.conf new file: config/hypr/scripts/LidSwitch.sh
* Added disable for laptop display on lid closeDon Williams10 days-0/+1
|
* Added event driven disable of eDP-1 on lid closeDon Williams10 days-2/+12
| | | | | | | | | On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserConfigs/Laptops.conf modified: config/hypr/UserConfigs/user_laptops.lua
* hypr: userkeybinds: reorganizebrockar10 days-3/+2
|
* waybar: libreoffice impress iconbrockar10 days-0/+1
|
* copy.sh was enablling lua workflowDon Williams10 days-35/+127
| | | | | | | | | | | | | | | | | | | Added additional checks Signed-off-by: Don Williams <don.e.williams@gmal.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserConfigs/01-UserDefaults.conf modified: config/hypr/configs/Startup_Apps.conf modified: config/hypr/lua/startup.lua modified: config/hypr/scripts/WallpaperDaemon.sh modified: config/hypr/scripts/WaybarStartup.sh modified: config/rofi/.current_wallpaper modified: copy.sh modified: scripts/lib_copy.sh
* Restored hyprlock filesDon Williams10 days-4/+368
| | | | | | | | | | | | | Signed-off-by: Don Williams <Don.e.williams@gmail.com> On branch development Your branch is ahead of 'origin/development' by 1 commit. (use "git push" to publish your local commits) Changes to be committed: new file: hyprlock-1080p.conf modified: hyprlock-2k.conf new file: hyprlock.conf
* Fixed wallpaper being reset (hopefully)Don Williams10 days-371/+84
| | | | Signed-off-by: Don Williams <Don.e.williams@gmail.com>
* Fixed seed_upgrade_userconfigs not found errorDon Williams10 days-0/+25
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: copy.sh
* Lib_copy wasn't honering --express-upgradeDon Williams10 days-1/+12
| | | | | | | | | | Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: scripts/lib_copy.sh
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage