summaryrefslogtreecommitdiff
path: root/.config/services
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2023-04-14 18:34:11 -0500
committerSam Nystrom <sam@samnystrom.dev>2023-04-14 18:34:11 -0500
commit861c7a7d738eb24942b06734fd4f5ffff55a4e32 (patch)
tree3e2345f9c43eb24f34edbce8ae27bcaa52523d59 /.config/services
parent186a6f2394060f211f79bb3cd99f32435b1bca71 (diff)
fix(superd): use absolute paths
Diffstat (limited to '.config/services')
-rw-r--r--.config/services/dbus.service2
-rw-r--r--.config/services/somebar.service2
-rw-r--r--.config/services/swaybg.service2
-rw-r--r--.config/services/swayidle.service6
4 files changed, 6 insertions, 6 deletions
diff --git a/.config/services/dbus.service b/.config/services/dbus.service
index eec35cf..b74b765 100644
--- a/.config/services/dbus.service
+++ b/.config/services/dbus.service
@@ -2,5 +2,5 @@
Description=dbus
[Service]
-ExecStart=dbus-daemon --nofork --session --address unix:path=$XDG_RUNTIME_DIR/bus
+ExecStart=/usr/bin/dbus-daemon --nofork --session --address unix:path=$XDG_RUNTIME_DIR/bus
Restart=always
diff --git a/.config/services/somebar.service b/.config/services/somebar.service
index 4604dc7..903bb30 100644
--- a/.config/services/somebar.service
+++ b/.config/services/somebar.service
@@ -2,4 +2,4 @@
Description=somebar
[Service]
-ExecStart=somebar
+ExecStart=/usr/bin/somebar
diff --git a/.config/services/swaybg.service b/.config/services/swaybg.service
index 84e350e..69540f3 100644
--- a/.config/services/swaybg.service
+++ b/.config/services/swaybg.service
@@ -2,4 +2,4 @@
Description=swaybg
[Service]
-ExecStart=swaybg -i /home/samn/wallpaper.jpg
+ExecStart=/usr/bin/swaybg -i /home/samn/wallpaper.jpg
diff --git a/.config/services/swayidle.service b/.config/services/swayidle.service
index 904e6ab..fafc23f 100644
--- a/.config/services/swayidle.service
+++ b/.config/services/swayidle.service
@@ -2,6 +2,6 @@
Description=swayidle
[Service]
-ExecStart=swayidle -w \
- timeout 300 'swaylock -f -i /home/samn/wallpaper.jpg' \
- before-sleep 'swaylock -f -i /home/samn/wallpaper.jpg'
+ExecStart=/usr/bin/swayidle -w \
+ timeout 300 '/usr/bin/swaylock -f -i /home/samn/wallpaper.jpg' \
+ before-sleep '/usr/bin/swaylock -f -i /home/samn/wallpaper.jpg'