#!/bin/sh
#
# /etc/X11/ude/StopScript
#
# StopScript file for uwm (0.2.6b-BETA)
# by Stephan P. Helma <s.p.helma@gmx.net>
#
# This file uses certain `hooks' (files stored in /etc/X11/uwm/ or 
# ~/.ude/config/) to allow the system administrator and user to modify
# the programs which will be executed at uwm shutdown without having to
# change this file.
#
# Please read /usr/share/doc/ude/uwm_manual.ascii.gz for more information.
#
# Hopefully, you will never have to modify this file.
#
# ATTENTION: This file will be overwritten when updating!
#

#
# Read in system and user stop-scripts
#

if [ -x /etc/X11/ude/StopScript.hook ]; then
    source /etc/X11/ude/StopScript.hook
fi
if [ -x $HOME/.ude/config/StopScript.hook ]; then
    source $HOME/.ude/config/StopScript.hook
fi
