loads of stuff but still not done yet

This commit is contained in:
2026-05-12 20:06:37 +01:00
parent c93ddf3818
commit b45ba4f751
11 changed files with 576 additions and 34 deletions

View File

@@ -1,4 +1,15 @@
local appList = {
"waybar",
"dunst",
"wpaperd -d",
"wayvnc 0.0.0.0 --output=DP-1",
"syncthing -home=/home/user01/.config/syncthing -no-browser",
"gotify-desktop",
"sleep 10 && curl -X POST -H 'Content-Type: application/json' -d '{'ref':'$(git -C ~/.dotfiles rev-parse HEAD)', 'status':'$(git -C ~/.dotfiles diff --quiet && echo 'clean' || echo 'dirty')'}' https://n8n.voidarc.co.uk/webhook/config-checker",
}
hl.on("hyprland.start", function()
hl.exec_cmd("waybar")
hl.exec_cmd("dunst")
for _, command in ipairs(appList) do
hl.exec_cmd(command)
end
end)