aboutsummaryrefslogtreecommitdiff
path: root/.config/awesome/misc/autostart.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/awesome/misc/autostart.lua')
-rw-r--r--.config/awesome/misc/autostart.lua19
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