[PC-BSD Commits] r7856 - pcbsd/current/system-overlay/usr/share/skel
svn at pcbsd.org
svn at pcbsd.org
Mon Oct 18 12:59:59 PDT 2010
Author: kris
Date: 2010-10-18 12:59:59 -0700 (Mon, 18 Oct 2010)
New Revision: 7856
Modified:
pcbsd/current/system-overlay/usr/share/skel/.xprofile
Log:
Added script to .xprofile to start our tray / startup apps when user logs in
Modified: pcbsd/current/system-overlay/usr/share/skel/.xprofile
===================================================================
--- pcbsd/current/system-overlay/usr/share/skel/.xprofile 2010-10-18 19:58:35 UTC (rev 7855)
+++ pcbsd/current/system-overlay/usr/share/skel/.xprofile 2010-10-18 19:59:59 UTC (rev 7856)
@@ -7,3 +7,9 @@
XDG_CONFIG_DIRS="/usr/local/etc/xdg"
export XDG_CONFIG_DIRS
+# Check for any specific PC-BSD apps we need to start at login
+cd /usr/local/share/pcbsd/xstartup
+for i in `ls *`
+do
+ if [ -x "${i}" ] ; then ./${i} ; fi
+done
More information about the Commits
mailing list