1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-04 03:42:10 +00:00
.dotfiles/configs/openbox/autostart

18 lines
414 B
Text
Raw Normal View History

2025-02-27 21:41:41 -05:00
#!/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 &
2024-12-31 20:27:32 -05:00
# dumb yambar workaround https://codeberg.org/dnkl/yambar/issues/429
2025-02-27 21:41:41 -05:00
xterm -geometry 1x1+0+18 >> $log 2>&1 &
2024-12-31 20:27:32 -05:00
temp=$!
sleep 1
2025-02-27 21:41:41 -05:00
yambar >> $log 2>&1 &
2024-12-31 20:27:32 -05:00
sleep 1
kill $temp