diff options
| author | Nippy <nippy@rp1.hu> | 2026-06-07 21:48:53 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-06-07 21:48:53 +0200 |
| commit | 8e474998c646a37b602d913092ab8f8fddd95242 (patch) | |
| tree | e2810709fe50c7b388bb4415463ba7ae58d08524 /raveos-hyprland-theme/raveos-hyprland-apply.sh | |
| parent | 8424a6399b9cfb98657fec10a78e2a57941e4cd1 (diff) | |
| download | RaveOS-PKGBUILD-8e474998c646a37b602d913092ab8f8fddd95242.tar.gz RaveOS-PKGBUILD-8e474998c646a37b602d913092ab8f8fddd95242.zip | |
raveos-hyprland-theme: migrate to Lua config (pkgrel 30)
- Replace hyprland.conf with hyprland.lua (new Hyprland Lua API)
- Add config/keybinds.lua and config/windowrules.lua as sub-modules
- Fix: remove windowrule-1 that floated ALL windows (caused apps not opening)
- Fix: use Lua os.getenv() for HOME/XDG_RUNTIME_DIR instead of static placeholders
- Fix killactive/togglefloating to use proper dispatcher calls (not exec_cmd)
- Add HyprShell layerrules (blur/ignorezero for overview/switch/launcher)
- Update sddm.conf: full config with Wayland compositor pointing to /usr/share/hypr/sddm/hyprland.lua
- Add sddm/hyprland.lua: minimal SDDM greeter compositor config
- Update apply script to install /usr/share/hypr/sddm/hyprland.lua
Diffstat (limited to 'raveos-hyprland-theme/raveos-hyprland-apply.sh')
| -rw-r--r-- | raveos-hyprland-theme/raveos-hyprland-apply.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/raveos-hyprland-apply.sh b/raveos-hyprland-theme/raveos-hyprland-apply.sh index 133713b..1d0d5b4 100644 --- a/raveos-hyprland-theme/raveos-hyprland-apply.sh +++ b/raveos-hyprland-theme/raveos-hyprland-apply.sh @@ -82,6 +82,10 @@ if [[ -f "${payload_dir}/sddm/sddm.conf" ]]; then install -Dm644 "${payload_dir}/sddm/sddm.conf" /etc/sddm.conf.d/raveos-theme.conf fi +if [[ -f "${payload_dir}/sddm/hyprland.lua" ]]; then + install -Dm644 "${payload_dir}/sddm/hyprland.lua" /usr/share/hypr/sddm/hyprland.lua +fi + for candidate in \ "/usr/share/sddm/themes/sddm-astronaut-theme" \ "/usr/share/sddm/themes/astronaut" \ |