#NOTE: .zshenv XDG paths are hardcoded to allow non-zsh install
+: ${DEST:=$(realpath "$HOME")}
+: ${SRC:=$(dirname "$(realpath "$0")")}
+
# test
devnull=/dev/null
if [ "$1" = "test" ]; then
- echo "Running test -- no changes will be applied"
- devnull=/dev/stdout
- _cd() {
- cd $*;
- echo " cd $*";
- echo "\$PWD=$PWD";
- }
- alias cd="_cd"
- alias mkdir="echo mkdir"
- alias ln="echo ln"
- alias rm="echo rm"
- alias sh="echo sh"
+ echo "Running test -- no changes will be applied"
+ devnull=/dev/stdout
+ _cd() {
+ cd $*;
+ echo " cd $*";
+ echo "\$PWD=$PWD";
+ }
+ alias cd="_cd"
+ alias mkdir="echo -- mkdir"
+ alias ln="echo -- ln"
+ alias rm="echo -- rm"
+ alias sh="echo -- sh"
fi
# create preferred folder structure
-cd ~
-mkdir -p bin etc share share/fonts .urxvt/ext .icons .themes >$devnull 2>&1
-mkdir -pm 700 var/tmp var/tmp/vim >$devnull 2>&1
-cd - >$devnull
+cd $DEST
+mkdir -p bin etc share/fonts share/themes share/icons >$devnull 2>&1
+which vim >$devnull 2>&1 && mkdir -pm 700 var/tmp/vim >$devnull 2>&1
+cd $SRC >$devnull
# ensure ostype
if [ -z "$OSTYPE" ]; then
- OSTYPE=`uname -s | tr '[:upper:]' '[:lower:]'`
+ OSTYPE=$(uname -s | tr '[:upper:]' '[:lower:]')
fi
# accomodate multiple userlands
lnargs=-sfnv
case "$OSTYPE" in
- freebsd*) lnargs=-sFhv;;
- netbsd|openbsd*) lnargs=-sfhv;;
+ freebsd*) lnargs=-sFhv;;
+ netbsd|openbsd*) lnargs=-sfhv;;
esac
l() {
- # TODO: use install?
- [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$PWD/$x}" "$1" || \
- echo "!!! File exists and is not a link: $1"
+ # TODO: use install?
+ [ -L "$1" -o \! -e "$1" ] && ln $lnargs "$SRC/${2:-$x}" "$DEST/${1:-$x}" ||
+ echo "!!! File exists and is not a link: $1"
}
-# link files
-find base -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/`basename "$x"`"
-done
-find bin share -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/$x"
-done
-find xdg -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/etc/`basename "$x"`"
-done
-find urxvt-ext -type f -perm -111 -mindepth 1 -maxdepth 2 | while read -r x; do
- l "$HOME/.urxvt/ext/`basename $x`"
-done
-find xorg/icons -type d -mindepth 1 -maxdepth 2 | while read -r x; do
- if [ -e "$x/index.theme" ]; then
- l "$HOME/.icons/`basename "$x"`"
- fi
-done
-find xorg/themes -type d -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/.themes/`basename "$x"`"
-done
-find fonts -type d -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/share/fonts/`basename "$x"`"
+# generic links
+find base -mindepth 1 -maxdepth 1 | while read -r x; do l "${x#base/}"; done
+find bin etc share -mindepth 1 -maxdepth 1 | while read -r x; do l; done
+
+# xorg/wayland resources
+find gui -mindepth 1 -maxdepth 1 | while read -r x; do
+ if [ "$x" = gui/fonts ]; then
+ find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+ which mkfontscale >$devnull 2>&1 && mkfontscale "$x"
+ which mkfontdir >$devnull 2>&1 && mkfontdir "$x"
+ [ "$(head -1 "$x/fonts.scale" >$devnull 2>&1)" = 0 ] &&
+ rm "$x/fonts.scale"
+ [ "$(head -1 "$x/fonts.dir" >$devnull 2>&1)" = 0 ] &&
+ rm "$x/fonts.dir"
+ done
+ elif [ "$x" = gui/icons ]; then
+ find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+ [ ! -e "$x/index.theme" ] && continue
+ which gtk-update-icon-cache >$devnull 2>&1 &&
+ gtk-update-icon-cache "$x"
+ done
+ fi
+ find "$x" -mindepth 1 -maxdepth 1 | while read -r x; do
+ l "share${x#gui}"
+ done
done
-#XXX: potential bug with newlines in profile name (if ff even takes it)
-#XXX: breaks on multiple profiles
-ffdir="`find "$HOME/.mozilla/firefox" -type d -mindepth 1 -maxdepth 1 | head -1 2>$devnull`"
-if [ -d "$ffdir" ]; then
- find firefox -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$ffdir/`basename "$x"`"
- done
- cd "$ffdir"
- echo "Updating user.js"
- sh ./user-js-updater.sh
- cd - >$devnull
+
+# gpg
+if which gpg >$devnull 2>&1; then
+ mkdir -p "$DEST/etc/gnupg"
+ find gnupg -mindepth 1 -maxdepth 1 \! -name '*.gpg' | while read -r x; do
+ l "etc/$x"
+ done
+ find gnupg -mindepth 1 -maxdepth 1 -name '*.gpg' | while read -r x; do
+ gpg --import "$x"
+ done
+fi
+
+# ssh
+find ssh -mindepth 1 -maxdepth 1 | while read -r x; do
+ l ".$x"; done
+
+# termux, assume it if android
+if [ $(uname -o) = 'Android' ]; then
+ mkdir -p "$DEST/.termux"
+ find termux -mindepth 1 -maxdepth 1 | while read -r x; do
+ l ".$x"; done
+ l ".termux/font.ttf" 'share/fonts/Dina-ttf/Dina.ttf'
fi
-# run .zprofile to set up tmp
-zsh ~/.zprofile
+# vim: sts=4 sw=4 et