File: StopScript

package info (click to toggle)
ude 0.2.8.final-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,096 kB
  • ctags: 1,613
  • sloc: ansic: 12,648; sh: 3,025; makefile: 476; yacc: 318
file content (29 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#
# /etc/X11/ude/StopScript
#
# StopScript file for uwm (0.2.8.final)
# by Stephan Helma <sph@debian.org>
#
# 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/html/manual.html for more information.
#
# Hopefully, you will never have to modify this file.
#
# ATTENTION: This file may 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