From f2d05b6e3332cf2d6488a85c3389ef9100ff580d Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 4 Nov 2012 01:13:02 -0500 Subject: Fix references to user profile directory. --- kpresenter/scripts/mkstandalone.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'kpresenter') diff --git a/kpresenter/scripts/mkstandalone.sh b/kpresenter/scripts/mkstandalone.sh index b362ee36..fa99fe69 100755 --- a/kpresenter/scripts/mkstandalone.sh +++ b/kpresenter/scripts/mkstandalone.sh @@ -25,8 +25,8 @@ else cp -r $TDEDIR/share/apps/kstyle $out/share/apps/ mkdir -p $out/share/config cp $TDEDIR/share/config/kdebug.areas $out/share/config/ - cp ~/.kde/share/config/kdeglobals $out/share/config/ - cp ~/.kde/share/config/kpresenterrc $out/share/config/ + cp ~/.trinity/share/config/kdeglobals $out/share/config/ + cp ~/.trinity/share/config/kpresenterrc $out/share/config/ ### cp $TDEDIR/share/icons $out/share/ cp -r $TDEDIR/share/toolbar $out/share/ mkdir -p $out/share/servicetypes @@ -72,17 +72,17 @@ else cp $TDEDIR/bin/kpresenter $out/bin/ cp $TDEDIR/bin/dcopserver $out/bin/ # Take kded as well - we could copy the ksycoca file but we would have - # to install it in ~/.kde ... + # to install it in ~/.trinity ... cp $TDEDIR/bin/kded $out/bin/ ########### Startup script echo '#!/bin/sh' > $out/go.sh echo 'export TDEDIR=`pwd`' >> $out/go.sh echo 'export LD_LIBRARY_PATH=$TDEDIR/lib' >> $out/go.sh - echo 'mkdir -p ~/.kde 2>/dev/null' >> $out/go.sh - echo 'mkdir -p ~/.kde/share 2>/dev/null' >> $out/go.sh - echo 'mkdir -p ~/.kde/share/config 2>/dev/null' >> $out/go.sh - echo 'cp share/config/* ~/.kde/share/config' >> $out/go.sh + echo 'mkdir -p ~/.trinity 2>/dev/null' >> $out/go.sh + echo 'mkdir -p ~/.trinity/share 2>/dev/null' >> $out/go.sh + echo 'mkdir -p ~/.trinity/share/config 2>/dev/null' >> $out/go.sh + echo 'cp share/config/* ~/.trinity/share/config' >> $out/go.sh echo 'bin/dcopserver 2>/dev/null' >> $out/go.sh echo 'sleep 1 ; bin/kded 2>/dev/null' >> $out/go.sh echo 'sleep 1 ; bin/kpresenter $* 1>/dev/null 2>kpresenter.out &' >> $out/go.sh -- cgit v1.2.1