gemini generated lua config

This commit is contained in:
venus
2026-05-22 05:51:26 -05:00
parent 492f4723bf
commit 9231418ac1
12 changed files with 546 additions and 0 deletions

14
modules/autostart.lua Normal file
View File

@@ -0,0 +1,14 @@
local vars = require("modules.variables")
hl.on("hyprland.start", function()
hl.exec(vars.shellWrapper)
hl.exec("systemctl --user start hyprpolkitagent")
hl.exec("udiskie")
hl.exec("hyprpm reload -n")
hl.exec("kdeconnectd")
hl.exec("hyprshell run &")
hl.exec("[workspace special:discord silent] vesktop -m")
hl.exec("[workspace special:email silent] " .. vars.email)
hl.exec("[workspace special:notes silent] obsidian")
hl.exec("protonmail-bridge --no-window")
end)