From 8c3f833db0dea1590e8d90b53e93702f45398020 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Sun, 13 Aug 2023 18:02:06 +0300 Subject: [PATCH] yay it works --- config/awesome/rc.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 01fafd3e..47c8db7b 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -588,10 +588,14 @@ beautiful.useless_gap = 10 -- autostart --awful.util.spawn_with_shell("~/.config/awesome/autostart.sh") -local run_on_start_up = { +local startupApps = { 'keepassxc', 'flameshot', + 'nm-applet', + 'blueman-applet', + 'picom', } + local startupDone do local restart_detected @@ -613,5 +617,7 @@ do end if not startupDone() then - awful.spawn('keepassxc') + for i, app in ipairs(startupApps) do + awful.spawn(app) + end end