From bc8a5889c4bb52405f2ac73d18a42ab43e93e867 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 14 Aug 2026 05:17:54 +0800 Subject: feat: add Lua config modules for Hyprland Split the monolithic Hyprland config into modular Lua files covering appearance, input, keybindings, monitors, startup, window rules, and workspace settings. --- env.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 env.lua (limited to 'env.lua') diff --git a/env.lua b/env.lua new file mode 100644 index 0000000..80597ef --- /dev/null +++ b/env.lua @@ -0,0 +1,13 @@ +-- 系统环境变量设置(对应 env.conf) +-- 参考 https://wiki.hypr.land/Configuring/Advanced-and-Cool/Environment-variables/ + +hl.env("XCURSOR_SIZE", "24") +hl.env("HYPRCURSOR_SIZE", "24") + +------------------- +-- FCITX5 配置 +------------------- +hl.env("QT_IM_MODULE", "fcitx") +hl.env("XMODIFIERS", "@im=fcitx") +hl.env("SDL_IM_MODULE", "fcitx") +hl.env("GLFW_IM_MODULE", "ibus") -- cgit