Topic: Restart tint2
When working on my tint2rc, I hate stopping and starting it everytime I made a change. So, I wrote a bash script to do it for me
It also kills volwheel and starts it again: this is because of ending tint2 resulting volwheel not to show up in the systemtray anymore.
#!/bin/bash
(killall -e tint2) &
(killall -e perl /usr/share/volwheel/volwheel) &
(sleep 1s && tint2) &
(sleep 2s && /usr/bin/volwheel) &
(sleep 5s && exit )Hopefully someone finds it useful!