summaryrefslogtreecommitdiff
path: root/hyprland.lua
blob: 51f3f2da5fad95121618b63b168e1a2d261abc01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
-- Hyprland 主配置文件 (Lua 版本, 对应 hyprland.conf)
-- 通过 require 引入各分模块
-- 参考 https://wiki.hypr.land/Configuring/Start/

require("env")         -- 环境变量
require("monitor")     -- 显示器配置
require("variables")   -- 默认程序设置
require("startup")     -- 自启动程序
require("permissions") -- 权限配置
require("appearance")  -- 外观设置
require("input")       -- 输入配置
require("keybind")     -- 键绑定
require("workspace")   -- 工作区配置

-- 窗口规则(原 hyprland.conf 中已注释,如需要请取消下一行)
-- require("window-rules")

-- 原 hyprland.conf 中的环境变量
hl.env("HYPRLAND_USE_LIBINPUT_GESTURES", "1")
hl.env("GTK_USE_PORTAL", "1")