#!/bin/sh # vssd - very simple stability daemon # (C) 2008 - dos # Licence: GPLv3 while true; do if [[ "`ps aux | grep matchbox-window-manager | grep -v grep`" == "" ]]; then dbus-launch matchbox-window-manager -use_titlebar yes -use_desktop_mode decorated -theme Moko -use_cursor no & fi; sleep 5 done;