From 1191153005636df9a990128be8b53ea74ef30b79 Mon Sep 17 00:00:00 2001
From: Luca Bilke <bilke@tralios.de>
Date: Fri, 23 Feb 2024 15:27:00 +0100
Subject: [PATCH] source dbus address in services

---
 .config/X11/xinitrc                     | 2 +-
 .local/share/service/dunst/run          | 2 ++
 .local/share/service/dwmblocks/log/run  | 2 ++
 .local/share/service/dwmblocks/run      | 6 ++++++
 .local/share/service/picom/run          | 2 ++
 .local/share/service/pipewire-pulse/run | 2 ++
 .local/share/service/pipewire/run       | 2 ++
 .local/share/service/wireplumber/run    | 2 ++
 .local/share/service/xsecurelock/run    | 2 ++
 9 files changed, 21 insertions(+), 1 deletion(-)
 create mode 100755 .local/share/service/dwmblocks/log/run
 create mode 100755 .local/share/service/dwmblocks/run

diff --git a/.config/X11/xinitrc b/.config/X11/xinitrc
index 80dfa24a..2ce46d6f 100755
--- a/.config/X11/xinitrc
+++ b/.config/X11/xinitrc
@@ -11,7 +11,7 @@ echo "Sourcing $X11_CONFIG/xprofile"
 
 . "$X11_CONFIG/xprofile"
 
-echo $DBUS_SESSION_BUS_ADDRESS > $XDG_STATE_HOME/dbus_session_bus_address
+echo "DBUS_SESSION_BUS_ADDRESS=\"$DBUS_SESSION_BUS_ADDRESS\"" > $XDG_STATE_HOME/dbus
 
 echo "Starting DWM"
 
diff --git a/.local/share/service/dunst/run b/.local/share/service/dunst/run
index 80381ddf..424dd90f 100755
--- a/.local/share/service/dunst/run
+++ b/.local/share/service/dunst/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 exec dunst
diff --git a/.local/share/service/dwmblocks/log/run b/.local/share/service/dwmblocks/log/run
new file mode 100755
index 00000000..c7df7fdc
--- /dev/null
+++ b/.local/share/service/dwmblocks/log/run
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec vlogger -t dwmblocks
diff --git a/.local/share/service/dwmblocks/run b/.local/share/service/dwmblocks/run
new file mode 100755
index 00000000..7f481a57
--- /dev/null
+++ b/.local/share/service/dwmblocks/run
@@ -0,0 +1,6 @@
+#!/bin/sh
+exec 2>&1
+
+PATH="$HOME/.local/libexec/statusbar:$PATH"
+
+exec dwmblocks
diff --git a/.local/share/service/picom/run b/.local/share/service/picom/run
index 25725a0b..f6a5318e 100755
--- a/.local/share/service/picom/run
+++ b/.local/share/service/picom/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 exec picom
diff --git a/.local/share/service/pipewire-pulse/run b/.local/share/service/pipewire-pulse/run
index f2165778..a3441923 100755
--- a/.local/share/service/pipewire-pulse/run
+++ b/.local/share/service/pipewire-pulse/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 exec pipewire -c pipewire-pulse.conf
diff --git a/.local/share/service/pipewire/run b/.local/share/service/pipewire/run
index 822cd150..1d45fbce 100755
--- a/.local/share/service/pipewire/run
+++ b/.local/share/service/pipewire/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 exec pipewire
diff --git a/.local/share/service/wireplumber/run b/.local/share/service/wireplumber/run
index f83eb99a..3136c445 100755
--- a/.local/share/service/wireplumber/run
+++ b/.local/share/service/wireplumber/run
@@ -1,4 +1,6 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 exec wireplumber
diff --git a/.local/share/service/xsecurelock/run b/.local/share/service/xsecurelock/run
index 5173e06f..876b8b8b 100755
--- a/.local/share/service/xsecurelock/run
+++ b/.local/share/service/xsecurelock/run
@@ -1,6 +1,8 @@
 #!/bin/sh
 exec 2>&1
 
+. "$XDG_STATE_HOME/dbus"
+
 [ -r conf ] && . ./conf
 
 exec xss-lock -n /usr/libexec/xsecurelock/dimmer -l -- sh -c "xsecurelock -- playerctl pause || kill -9 -1"