blob: 8e967221ef17b94da311daedc966e3f9264d905f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Wrapper to start dzen2 processes in new a process group.
# With this, it is easier to kill all processes.
while true; do
setsid /bin/sh ${HOME}/.dzen2/bin/dzen2_pgrp.sh $@
wait $!
done
|