#!/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