work pls
This commit is contained in:
parent
73c95f0a85
commit
6d4effc932
1 changed files with 7 additions and 6 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue