diff options
author | delta <darkussdelta@gmail.com> | 2023-04-04 15:43:40 +0200 |
---|---|---|
committer | delta <darkussdelta@gmail.com> | 2023-04-04 15:43:40 +0200 |
commit | f7116d268aff3fae88d8de408e8c807295618a5c (patch) | |
tree | 6f52530d5799769e6af7c63bc5108f16f9aff742 /.config/awesome/misc/autostart.lua | |
parent | f0b32f45746c026d402651013b7e98315d6956a1 (diff) |
restructure and improve config
Diffstat (limited to '.config/awesome/misc/autostart.lua')
-rw-r--r-- | .config/awesome/misc/autostart.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/awesome/misc/autostart.lua b/.config/awesome/misc/autostart.lua new file mode 100644 index 0000000..8cf50b6 --- /dev/null +++ b/.config/awesome/misc/autostart.lua @@ -0,0 +1,19 @@ +local awful = require "awful" +local quarrel = require "quarrel" + +if quarrel.is_restart() then return end + +local programs = { + "picom -b", + "sxhkd", + "clipcatd", + "wezterm", + "wezterm start --class code_term", + "firefox", + "discord", + "spotify" +} + +for _, program in ipairs(programs) do + awful.spawn(program) +end |