add lua-based config set

This commit is contained in:
2026-05-08 00:00:15 +09:00
parent bc71aeb4dc
commit a7fefa3305
12 changed files with 248 additions and 1 deletions

10
startup.lua Normal file
View File

@@ -0,0 +1,10 @@
hl.on("hyprland.start", function()
hl.exec_cmd(terminal)
hl.exec_cmd("gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'")
hl.exec_cmd("waybar")
hl.exec_cmd("swww --transition-type none")
hl.exec_cmd("fcitx5")
hl.exec_cmd("waypaper --restore")
hl.exec_cmd("wl-paste -p --watch wl-copy -p -c")
hl.dsp.focus({ workspace = 1 })
end)