aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xfce4-firstrun
blob: d6be828f1aedb0889e067b7dbf134836cb34a35f (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
#!/bin/sh
# Simple script which configure Xfce environment for a fresh user
# Author: tpg@mandriva.org
# Licensed under GPL terms

USER_DESKTOP=`xdg-user-dir DESKTOP`
DESKTOP_FILE=$HOME/.config/autostart/xfce4-firstrun.desktop

if [ `whoami` = "root" ]; then
    echo "xfce4-firstrun: not supported for superuser."
    exit || 0
else
    if [ ! -e $DESKTOP_FILE ]; then
	echo "xfce4-firstrun: localised desktop folder exists."
	if [ ! -d $HOME/.config/autostart ]; then
	mkdir -p $HOME/.config/autostart
	fi

cat > $HOME/.config/autostart/xfce4-firstrun.desktop << EOF
[Desktop Entry]
Hidden=true
EOF
#

	    if [ ! -e $USER_DESKTOP/mageia-draklive-install.desktop ]; then
		cp -f /usr/share/applications/mageia-draklive-install.desktop $USER_DESKTOP 2> /dev/null
	    fi
		if [ "$(pidof xfdesktop)" ]; then 
		    xfdesktop --reload 1> /dev/null; echo "xfce4-firstrun: xfdesktop reloaded.";
		fi
	    exit || 0

	fi
    else echo "xfce4-firstrun: make sure you have installed xdg-user-dirs-gtk and xdg-user-dir packages."
    fi
fi

#EOF