blob: bafce22839a013450cd3f42aa2d8f6acc670f6bd (
plain) (
blame)
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
|
--- startkde.orig Sat Jan 4 18:26:07 2003
+++ startkde Sat Jan 11 18:10:35 2003
@@ -34,7 +34,7 @@
# 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 #0080C0"
xsetroot -cursor_name left_ptr $bkg
# The user's personal KDE directory is usually ~/.kde, but this setting
@@ -87,14 +87,11 @@
kde_fontpaths=$kde_fontsdir/fontpaths
if test -r "$kde_fontpaths" ; then
- savifs=$IFS
- IFS=
for fpath in `grep -v '^[ ]*#' < "$kde_fontpaths"` ; do
if test -s "$fpath"/fonts.dir ; then
xset fp+ "$fpath"
fi
done
- IFS=$savifs
fi
# Ask X11 to rebuild its font list.
@@ -140,7 +140,7 @@
fi
# the splashscreen and progress indicator
-ksplash
+test -x /usr/local/bin/ksplashml && { ksplashml;true; } || ksplash
# We set LD_BIND_NOW to increase the efficiency of kdeinit.
# kdeinit unsets this variable before loading applications.
|