Compare commits
3 Commits
f14f3889eb
...
198ecb119d
| Author | SHA1 | Date | |
|---|---|---|---|
| 198ecb119d | |||
| b316a18464 | |||
| d41059af1b |
@@ -0,0 +1 @@
|
||||
lua/user/
|
||||
@@ -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")
|
||||
|
||||
@@ -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
|
||||
@@ -0,0 +1,11 @@
|
||||
local M = {}
|
||||
|
||||
local function start_hypridle()
|
||||
hl.exec_cmd("hypridle")
|
||||
end
|
||||
|
||||
M.autostart = {
|
||||
start_hypridle,
|
||||
}
|
||||
|
||||
return M
|
||||
@@ -1,6 +0,0 @@
|
||||
local settings = {}
|
||||
|
||||
settings["hostname"] = "arch-c940"
|
||||
settings["profile"] = "laptop"
|
||||
|
||||
return settings
|
||||
Reference in New Issue
Block a user