1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-03 19:32:09 +00:00
This commit is contained in:
Rae 5e 2025-02-27 21:41:41 -05:00
parent 98832fcfbf
commit 78b49f772c
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE

View file

@ -1,10 +1,17 @@
hsetroot -cover ~/.dotfiles/assets/wallpapers/current
xcompmgr &
soteria
#!/bin/sh
log=$(mktemp /tmp/wmas-openbox-XXXXXXXX.txt)
echo "Openbox autostart file" > $log
echo -e "Executed @ $(date)\n" >> $log
hsetroot -cover ~/.dotfiles/assets/wallpapers/current >> $log 2>&1
xcompmgr >> $log 2>&1 &
soteria >> $log 2>&1 &
# dumb yambar workaround https://codeberg.org/dnkl/yambar/issues/429
xterm -geometry 1x1+0+18 &
xterm -geometry 1x1+0+18 >> $log 2>&1 &
temp=$!
sleep 1
yambar &
yambar >> $log 2>&1 &
sleep 1
kill $temp