blob: 854fae1b539637503acdb5366c3db6301d437afe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- datas/startede.in.orig Sun Sep 3 00:52:45 2006
+++ datas/startede.in Sat Dec 16 20:00:01 2006
@@ -27,16 +27,16 @@
fi
# If we have xsetroot than script shoult run it
-if [ "$XSETROOT" ]; then
+if [ ! -z "$XSETROOT" ]; then
$XSETROOT -solid black
fi
# Test if XScreenSaver is somewhere in PATH, if not - don't start it
-if [ "$XSSAVER" ]; then
+if [ ! -z "$XSSAVER" ]; then
xscreensaver -nosplash &
fi
exec edewm &
exec eiconman &
etip &
-exec eworkpanel
+eworkpanel
|