From b36050cc35e59919cfca600c645eb3fc5ba3619e Mon Sep 17 00:00:00 2001 From: azpsen Date: Fri, 9 Feb 2024 08:53:15 -0600 Subject: [PATCH] add tailscale tray icon --- .config/bspwm/bspwmrc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.config/bspwm/bspwmrc b/.config/bspwm/bspwmrc index 6fb3151..2ff599b 100755 --- a/.config/bspwm/bspwmrc +++ b/.config/bspwm/bspwmrc @@ -25,17 +25,29 @@ bspc rule -a Xarchiver state=floating bspc rule -a L3afpad state=floating bspc rule -a copyq state=floating -# start screen locker +# --------- # +# autostart # +# --------- # + +# screen locker xset s 600 5 xss-lock -n /usr/lib/xsecurelock/dimmer -l -- xsecurelock & +# tailscale systray icon +pgrep -f tailscale-systray > /dev/null || tailscale-systray & + +# notifications manager pgrep -x dunst > /dev/null || dunst & +# notify on song changes pgrep -x notify.sh > /dev/null || ~/.config/bspwm/scripts/notify.sh & +# polybar ~/.config/bspwm/scripts/launch-polybar.sh & +# clipboard manager pgrep -x copyq > /dev/null || ~/.config/bspwm/scripts/copyq.sh & +# compositor killall picom picom --no-fading-openclose &