skel/hypr: GSK_RENDERER=cairo + wire up the shell layer rules
Two fixes for the black-shell / no-blur symptoms (seen first in a VM, but the renderer one bites real hardware too): 1. `GSK_RENDERER=cairo` in the session env. GTK4's default renderer (ngl/vulkan on 4.14+) draws transparent layer-shell surfaces as opaque black on wlroots — the whole bread shell (breadbox launcher, breadclip popup, breadbar, breadhelp, bos-settings) goes black-on- black, and it's guaranteed under a VM's virtio-gpu where there's no real GL/Vulkan context. cairo (software) always composites transparency correctly; the shell is flat colour/text/icons so there's no visible cost, and idle memory drops (~40%, no Mesa driver resident). Override with GSK_RENDERER=gl in the session for a GPU-heavy GTK4 app. 2. `scripts/ui/rules.lua` (new) + a `pcall(dofile ...)` for it in hyprland.lua + `bread-theme layerrules` in the bootstrap. The shell-theme work added layer-rule *generation* (bread-theme writes ~/.config/hypr/layerrules.json from the theme's [compositor] table) but BOS never shipped the read side, so no blur / ignore-alpha / per-namespace motion was ever applied to breadbar / breadbox / breadclip. rules.lua reads the JSON and emits `hl.layer_rule`, with the pre-theme hardcoded rule set as a pcall-guarded fallback (matches the live reference config). Layer rules only — window / workspace / focus rules stay in hyprland.lua.
This commit is contained in:
parent
87887f09af
commit
232ee0c7a9
2 changed files with 161 additions and 0 deletions
|
|
@ -63,6 +63,16 @@ end
|
|||
hl.window_rule({ name = "breadhelp", match = { class = "^(com\\.breadway\\.breadhelp)$" }, float = true, size = { 880, 600 } })
|
||||
hl.window_rule({ name = "bos-netsetup", match = { class = "^(bos-netsetup)$" }, float = true, size = { 700, 560 } })
|
||||
|
||||
-- ---------------------------------------------------------------------------
|
||||
-- Layer-shell rules — blur / ignore-alpha / per-namespace motion for the
|
||||
-- bread shell (breadbar island + osd + notif + panel, breadbox launcher,
|
||||
-- breadclip popup). Theme-driven via ~/.config/hypr/layerrules.json (written
|
||||
-- by `bread-theme layerrules` in the bootstrap below), with a hardcoded
|
||||
-- fallback so a missing/broken theme file can never leave the shell
|
||||
-- unblurred. Without these the launcher and popups get no compositor blur.
|
||||
-- ---------------------------------------------------------------------------
|
||||
pcall(dofile, script_dir .. "ui/rules.lua")
|
||||
|
||||
-- ---------------------------------------------------------------------------
|
||||
-- Environment (vendor-neutral; no GPU-specific vars so it works on Intel/AMD).
|
||||
-- ---------------------------------------------------------------------------
|
||||
|
|
@ -76,6 +86,15 @@ hl.env("QT_WAYLAND_DISABLE_WINDOWDECORATION", "1")
|
|||
hl.env("SDL_VIDEODRIVER", "wayland")
|
||||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
||||
hl.env("_JAVA_AWT_WM_NONREPARENTING", "1")
|
||||
-- GTK4's default renderer (ngl/vulkan on GTK 4.14+) renders transparent
|
||||
-- layer-shell surfaces as opaque black on wlroots — the whole bread shell
|
||||
-- (breadbox launcher, breadclip popup, breadbar, breadhelp, bos-settings)
|
||||
-- goes black-on-black, and it's worse under a VM's virtio-gpu where no real
|
||||
-- GL/Vulkan context is available. cairo (software) always composites
|
||||
-- transparency correctly; the shell is flat colour/text/icons so there's no
|
||||
-- visible perf cost, and idle memory drops (~40%, no Mesa driver resident).
|
||||
-- Set GSK_RENDERER=gl in the session to override for a GPU-heavy GTK4 app.
|
||||
hl.env("GSK_RENDERER", "cairo")
|
||||
|
||||
-- Optional NVIDIA env from bos-nvidia-setup. Mesa machines have no file.
|
||||
-- bos-nvidia-setup: optional proprietary env; no-op when the file is absent
|
||||
|
|
@ -128,6 +147,12 @@ hl.on("hyprland.start", function()
|
|||
-- Generate the shared bread GUI stylesheet first, so breadbar/breadbox/
|
||||
-- bos-settings load it on start (they also live-reload if it changes).
|
||||
"bread-theme generate",
|
||||
-- Write ~/.config/hypr/layerrules.json from the active shell theme's
|
||||
-- [compositor] table. scripts/ui/rules.lua (loaded above) already ran
|
||||
-- with the hardcoded fallback; this refreshes the JSON for the next
|
||||
-- `hyprctl reload` / theme switch. Harmless if bread-theme lacks the
|
||||
-- verb on an older build.
|
||||
"sh -c 'bread-theme layerrules 2>/dev/null || true'",
|
||||
-- Global dark theme: GTK4/libadwaita + GTK3 theme + icon + cursor.
|
||||
"gsettings set org.gnome.desktop.interface color-scheme prefer-dark",
|
||||
"gsettings set org.gnome.desktop.interface gtk-theme Adwaita-dark",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue