dylanaraps / sowm

An itsy bitsy floating window manager (220~ sloc!).
MIT License
915 stars 73 forks source link

bud not working in arch linux #80

Closed ghost closed 4 years ago

ghost commented 4 years ago

Hello, how do I install the wallpaper cycler "bud" or where can I download and install it ?, apparently in my gnu/linux distribution (arch linux) it doesn't work, regards!

dylanaraps commented 4 years ago

https://github.com/dylanaraps/bin/blob/master/bud

ghost commented 4 years ago

hi Dylan it may not be important but I have had the need to auto run applications when starting sowm, I leave the code snippet if it works for someone else, or if you can add it to README.md

#!/bin/sh
# add to ~/.xinitrc
while : ; do
    if ps -A | grep -iq sowm; then
        # add the programs to auto-execute in the script
        sh ~/autostart.sh
        break
    fi
done &
exec sowm