attempt to make better startup

This commit is contained in:
Sakooooo 2023-08-13 16:22:21 +03:00
parent 9f51683da7
commit 1a02157cb2
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -584,4 +584,11 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
-- Gaps for dopamine -- Gaps for dopamine
beautiful.useless_gap = 10 beautiful.useless_gap = 10
-- TODO find good autostart -- making better autostart
local startupApps = {
'keepassxc',
}
for app in startupApps do
awful.spawn.once(app)
end