some fixes in hyprland

This commit is contained in:
2026-08-19 19:56:58 +02:00
parent 4207f91f5a
commit 6a9ae98c26
10 changed files with 517 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
-- config/environment.lua
-- Wayland / cursor env vars (mirrors environment.conf)
-- NOTE: In 0.55 Lua config these are set via hl.config({ env = ... })
-- or directly sourced into the Lua environment before hl.exec_once.
hl.config({
env = {
HYPRCURSOR_THEME = "vimix-kanagawa-hyprcursors-lotus",
HYPRCURSOR_SIZE = "34",
XCURSOR_THEME = "vimix-kanagawa-hyprcursors-lotus",
XCURSOR_SIZE = "34",
QT_CURSOR_SIZE = "34",
ELECTRON_OZONE_PLATFORM_HINT = "wayland",
QT_QPA_PLATFORM = "wayland",
SDL_VIDEODRIVER = "wayland",
CLUTTER_BACKEND = "wayland",
XDG_SESSION_TYPE = "wayland",
MOZ_ENABLE_WAYLAND = "1",
NIXOS_OZONE_WL = "1",
WLR_DRM_NO_DIRECT_SCANOUT = "1",
},
})