diff options
-rwxr-xr-x | make_slackware_live.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index 3b44a0d..5f4b30a 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1017,9 +1017,12 @@ echo "-- Configuring XFCE." # -------------------------------------------------------------------------- # # Prepare some XFCE defaults for the 'live' user and any new users. -# (don't show icons on the desktop for irrelevant stuff): +# (don't show icons on the desktop for irrelevant stuff). +# Also, allow other people to add their own custom skel*.txz archives: mkdir -p ${LIVE_ROOTDIR}/etc/skel/ -tar -xf ${LIVE_TOOLDIR}/skel/skel.txz -C ${LIVE_ROOTDIR}/etc/skel/ +for SKEL in ${LIVE_TOOLDIR}/skel/skel*.txz ; do + tar -xf ${SKEL} -C ${LIVE_ROOTDIR}/etc/skel/ +done # -------------------------------------------------------------------------- # echo "-- Configuring KDE4." |