Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
fix install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Dec 18, 2015
1 parent 501704d commit fe9b64b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,18 @@ SRCDIR=/usr/share/antergos-kde-setup
DSTDIR=/home/${USER_NAME}

# Copy generic files (this should be done in the PKGBUILD)
cp -R ${OVERWRITE} ${SRCDIR}/apps \
cp -R ${OVERWRITE} -T /usr/share \
${SRCDIR}/apps \
${SRCDIR}/config \
${SRCDIR}/icons \
${SRCDIR}/themes \
${SRCDIR}/skel \
${SRCDIR}/wallpapers /usr/share
${SRCDIR}/wallpapers

# Copy user files
cp -R ${OVERWRITE} ${SRCDIR}/skel/.* ${DSTDIR}
cp -R ${OVERWRITE} -T ${DSTDIR} \
${SRCDIR}/skel/.config \
${SRCDIR}/skel/.local \
${SRCDIR}/skel/.gtk**

chown -R ${USER_NAME}:users ${DSTDIR}

0 comments on commit fe9b64b

Please sign in to comment.