From 1a02157cb28235a7476165c33a83822e07a6b3a8 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sun, 13 Aug 2023 16:22:21 +0300 Subject: [PATCH] attempt to make better startup --- config/awesome/rc.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index f4f8e57e..7925a38e 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -584,4 +584,11 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n -- Gaps for dopamine beautiful.useless_gap = 10 --- TODO find good autostart +-- making better autostart +local startupApps = { + 'keepassxc', +} + +for app in startupApps do + awful.spawn.once(app) +end