diff options
author | 2002-07-13 07:08:04 +0000 | |
---|---|---|
committer | 2002-07-13 07:08:04 +0000 | |
commit | dc66b17ad876c4ee70768ea5aea78d03930fe2eb (patch) | |
tree | 2557613a9f8ec59007c0c69a3dfa61713cd696de /kde-base/kdebase | |
parent | buffer overflow fix (diff) | |
download | historical-dc66b17ad876c4ee70768ea5aea78d03930fe2eb.tar.gz historical-dc66b17ad876c4ee70768ea5aea78d03930fe2eb.tar.bz2 historical-dc66b17ad876c4ee70768ea5aea78d03930fe2eb.zip |
missing files
Diffstat (limited to 'kde-base/kdebase')
-rw-r--r-- | kde-base/kdebase/files/startkde-3.1_alpha1-gentoo.diff | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/kde-base/kdebase/files/startkde-3.1_alpha1-gentoo.diff b/kde-base/kdebase/files/startkde-3.1_alpha1-gentoo.diff new file mode 100644 index 000000000000..232f018cf3fa --- /dev/null +++ b/kde-base/kdebase/files/startkde-3.1_alpha1-gentoo.diff @@ -0,0 +1,48 @@ +--- startkde Mon Jul 1 22:21:54 2002 ++++ startkde Fri Jul 12 19:59:26 2002 +@@ -1,8 +1,28 @@ +-#!/bin/sh ++#!/bin/sh --login + # +-# DEFAULT KDE STARTUP SCRIPT ( KDE-3.1 ) ++# GENTOO CUSTOMIZED KDE STARTUP SCRIPT ( KDE-3.1 ) + # + ++# Gentoo part: ++export PATH="_KDEDIR_/bin:${PATH}" ++export KDEDIR="_KDEDIR_" ++export KDEDIRS="_KDEDIR_:${KDEDIRS//${KDEDIR}}" ++ ++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}/.kde3.1" ++ ++# Gentoo part ends ++ + # Boot sequence: + # + # kdeinit is used to fork off processes which improves memory usage +@@ -25,12 +45,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 |