Compare commits

...

3 Commits

Author SHA1 Message Date
wyj 198ecb119d update: add cliphist module 2026-05-28 03:34:22 -04:00
wyj b316a18464 update: add hypridle module 2026-05-28 02:49:14 -04:00
wyj d41059af1b update: add .gitignore 2026-05-28 02:41:54 -04:00
5 changed files with 25 additions and 6 deletions
+1
View File
@@ -0,0 +1 @@
lua/user/
+2
View File
@@ -14,9 +14,11 @@ settings["systemd"] = false
---@type table<string, boolean>
settings["modules"] = {
hypridle = true,
waybar = true,
swaync = true,
swayosd = true,
cliphist = true,
}
return require("lua.lib.utils").extend_config(settings, "lua.user.settings")
+11
View File
@@ -0,0 +1,11 @@
local M = {}
local function start_wl_clipboard()
hl.exec_cmd("wl-paste --watch cliphist store")
end
M.autostart = {
start_wl_clipboard,
}
return M
+11
View File
@@ -0,0 +1,11 @@
local M = {}
local function start_hypridle()
hl.exec_cmd("hypridle")
end
M.autostart = {
start_hypridle,
}
return M
-6
View File
@@ -1,6 +0,0 @@
local settings = {}
settings["hostname"] = "arch-c940"
settings["profile"] = "laptop"
return settings