blob: f43b5cd3af7ce57ba4ec0478005dd4c590bafb22 (
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
|
--- startkde Mon Jun 24 14:54:36 2002
+++ startkde Fri Jun 28 19:25:38 2002
@@ -1,8 +1,22 @@
#!/bin/sh
#
-# DEFAULT KDE STARTUP SCRIPT ( KDE-3.0.2 )
+# GENTOO CUSTOMIZED KDE STARTUP SCRIPT ( KDE-3.0.2 )
#
+# Gentoo part:
+export PATH="_KDEDIR_/bin:${PATH}"
+export KDEDIR="_KDEDIR_"
+export KDEDIRS="_KDEDIR_:${KDEDIRS}"
+export KDEMAINDIR="_KDEDIR_"
+
+cd ~
+[ -d .kde ] && mv .kde .kde.backup
+[ -e .kde3 ] || mkdir .kde3
+ln -sf .kde3 .kde
+export KDEHOME="${HOME}/.kde3"
+
+# Gentoo part ends
+
# Boot sequence:
#
# kdeinit is used to fork off processes which improves memory usage
@@ -25,12 +39,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
|