yay it works
This commit is contained in:
parent
bda8d6440b
commit
8c3f833db0
1 changed files with 8 additions and 2 deletions
|
@ -588,10 +588,14 @@ beautiful.useless_gap = 10
|
||||||
-- autostart
|
-- autostart
|
||||||
--awful.util.spawn_with_shell("~/.config/awesome/autostart.sh")
|
--awful.util.spawn_with_shell("~/.config/awesome/autostart.sh")
|
||||||
|
|
||||||
local run_on_start_up = {
|
local startupApps = {
|
||||||
'keepassxc',
|
'keepassxc',
|
||||||
'flameshot',
|
'flameshot',
|
||||||
|
'nm-applet',
|
||||||
|
'blueman-applet',
|
||||||
|
'picom',
|
||||||
}
|
}
|
||||||
|
|
||||||
local startupDone
|
local startupDone
|
||||||
do
|
do
|
||||||
local restart_detected
|
local restart_detected
|
||||||
|
@ -613,5 +617,7 @@ do
|
||||||
end
|
end
|
||||||
|
|
||||||
if not startupDone() then
|
if not startupDone() then
|
||||||
awful.spawn('keepassxc')
|
for i, app in ipairs(startupApps) do
|
||||||
|
awful.spawn(app)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue