aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2024-02-06 11:17:16 +0100
committerPatrick Spek <p.spek@tyil.nl>2024-02-06 11:17:16 +0100
commitace4c02ee83822eaddac7d3c52467a6e9c246e12 (patch)
tree0b20cc4d9bb589aa70223b0ee816e79786f25e26 /.config
parent584932f2fa75042aedb3d1544961cc0fde5a5961 (diff)
Leverage systemd for startup units
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua19
1 files changed, 3 insertions, 16 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index 1a7c4fd..4d07024 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -46,22 +46,9 @@ do
end
-- }}}
--- {{{ Background services
-function run_once(cmd)
- findme = cmd
- firstspace = cmd:find(" ")
-
- if firstspace then
- findme = cmd:sub(0, firstspace - 1)
- end
-
- awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
-end
-
-run_once("xcompmgr")
-run_once("chwp")
-run_once("redshift -l 51.50:4.59 -t 6500:2500")
--- }}}
+-- Start the desktop.target to autostart applications through systemd
+awful.util.spawn_with_shell("systemctl --user start desktop.target")
+awful.util.spawn_with_shell("systemctl --user start desktop-x11.target")
-- {{{ Variable definitions
beautiful.init(awful.util.getdir("config") .. "/theme.lua")