[PC-BSD Commits] r19331 - pcbsd/current/overlays/desktop-overlay/usr/share/skel
svn at pcbsd.org
svn at pcbsd.org
Tue Sep 18 10:52:48 PDT 2012
Author: kris
Date: 2012-09-18 17:52:48 +0000 (Tue, 18 Sep 2012)
New Revision: 19331
Modified:
pcbsd/current/overlays/desktop-overlay/usr/share/skel/.xprofile
Log:
Fix a syntax error, and add a new XDG datadir for PBI data. This will allow
us to better share icons / menu icons, mime-types and other data between PBIs
which may be installed as a user
Modified: pcbsd/current/overlays/desktop-overlay/usr/share/skel/.xprofile
===================================================================
--- pcbsd/current/overlays/desktop-overlay/usr/share/skel/.xprofile 2012-09-18 17:47:23 UTC (rev 19330)
+++ pcbsd/current/overlays/desktop-overlay/usr/share/skel/.xprofile 2012-09-18 17:52:48 UTC (rev 19331)
@@ -1,7 +1,7 @@
# Setup some extra PATH variables
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:$HOME/bin; export PATH
-XDG_DATA_DIRS="/share:/usr/share:/usr/local/share"
+XDG_DATA_DIRS="/share:/usr/share:/usr/pbi/share:/usr/local/share"
export XDG_DATA_DIRS
XDG_CONFIG_DIRS="/usr/local/etc/xdg"
@@ -11,5 +11,6 @@
for i in `ls /usr/local/share/pcbsd/xstartup/*`
do
# Run Each task in the background to run in parallel
- if [ -x "${i}" ] ; then (. ${i})& ; fi
+ if [ -x "${i}" ] ; then (. ${i}) &
+ fi
done
More information about the Commits
mailing list