This commit is contained in:
Sakooooo 2023-08-07 01:00:39 +03:00
parent 73c95f0a85
commit 6d4effc932
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -585,14 +585,15 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
beautiful.useless_gap = 5 beautiful.useless_gap = 5
-- autostart -- autostart
startup = true autorun = true
startupfinished = false autorundone = false
startupapps = { autorunApps = {
"keepassxc", "keepassxc",
"flameshot",
} }
if startup and not startupfinished then if autorun and not autorundone then
for app = 1, #startupapps do for app = 1, #autorunApps do
awful.util.spawn(startupApps[app]) awful.util.spawn(autorunApps[app])
end end
end end