summaryrefslogtreecommitdiff
blob: 1349a4efdf496ff9189c78d3ee44cb66ab38b101 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
--- startkde	2002-11-30 18:58:15.000000000 +0100
+++ startkde	2002-12-01 01:27:18.000000000 +0100
@@ -1,12 +1,31 @@
-#!/bin/sh
+#!/bin/sh --login
 #
-#  DEFAULT KDE STARTUP SCRIPT ( KDE-3.1 )
+#  GENTOO CUSTOMIZED KDE STARTUP SCRIPT ( KDE-3.1 )
 #
 
 # When the X server dies we get a HUP signal from xinit. We must ignore it
 # because we still need to do some cleanup.
 trap 'echo GOT SIGHUP' HUP
 
+# Gentoo part:
+export PATH="_KDEDIR_/bin:${PATH}"
+export KDEDIR="_KDEDIR_"
+export KDEDIRS="_KDEDIR_:/usr" # do NOT add env.d's KDEDIRS
+cd ~
+[ -d .kde ] && mv .kde .kde.backup
+if [ ! -e .kde3.1 ]; then
+   if [ -e .kde3 ]; then
+       cp -r .kde3 .kde3.1
+   else
+       mkdir .kde3.1
+   fi
+fi
+ln -sf .kde3.1 .kde
+
+#export KDEHOME="${HOME}/.kdecvs"
+
+# Gentoo part ends
+
 # Boot sequence:
 #
 # kdeinit is used to fork off processes which improves memory usage
@@ -29,12 +48,12 @@
 # especially necessary on slow machines, where starting KDE takes one or two
 # minutes until anything appears on the screen.
 #
-# Set the background to plain grey.
+# Set the background to cyan (Gentoo version change).
 # The standard X background is nasty, causing moire effects and exploding
 # people's heads. We use colours from the standard KDE palette for those with
 # palettised displays.
 
-test "$XDM_MANAGED" || bkg="-solid #C0C0C0"
+test "$XDM_MANAGED" || bkg="-solid #5477A0"
 xsetroot -cursor_name left_ptr $bkg
 
 # The user's personal KDE directory is usually ~/.kde, but this setting
@@ -140,7 +159,11 @@
 fi
 
 # the splashscreen and progress indicator
-ksplash
+if [ -n "$KSPLASH" ]; then
+    $KSPLASH
+else
+    ksplash
+fi
 
 # We set LD_BIND_NOW to increase the efficiency of kdeinit.
 # kdeinit unsets this variable before loading applications.