diff options
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | config/hypr/lua/startup.lua | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 797ecb94..ab33a183 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,8 @@ ## Fixed: +- Updated startup sequence, wallpaper, theme scripts to remove waybar startup delays +- Default LUA startup file updated to match Hyprlang changes made for waybar - LUA migration script properly edits `~/.config/hypr/UserConfigs/monitors.lua` - LUA migration script failed to translate disabled monitors to LUA format - I.e. for `eDP-1` laptop screens @@ -39,7 +41,7 @@ - Fixed `RainbowBorders` script to work with LUA config - Fixed lua migrate script to force uppercase `SHIFT` - LUA API doesn't allow `shift` -- Duplicate keybinds:wq +- Duplicate keybinds - `copy.sh` was ovewritting sddm background and wallpaper - Also removed prompt for `Hypridle` restore - Background image in rofi didn't get updated in LUA workflow diff --git a/config/hypr/lua/startup.lua b/config/hypr/lua/startup.lua index 6ff9f8ad..88a9b106 100644 --- a/config/hypr/lua/startup.lua +++ b/config/hypr/lua/startup.lua @@ -42,7 +42,7 @@ end -- Prefer lifecycle-hook orchestration for clarity while keeping exec_once -- reliability semantics for real-world startup behavior. local startup_commands = { - "sleep 2; $HOME/.config/hypr/scripts/WallpaperDaemon.sh; $HOME/.config/hypr/scripts/ApplyThemeMode.sh; $HOME/.config/hypr/scripts/WaybarStartup.sh", + "sleep 2; $HOME/.config/hypr/scripts/WallpaperDaemon.sh & $HOME/.config/hypr/scripts/ApplyThemeMode.sh && $HOME/.config/hypr/scripts/WaybarStartup.sh", "$HOME/.config/hypr/initial-boot.sh", "dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP", "systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP", |
