#!/bin/sh
-if [ 0 -eq 1 ]; then
- alias mkdir="echo mkdir"
- alias ln="echo ln"
- alias rm="echo rm"
- alias cap_mkdb="echo cap_mkdb"
- alias unlink="echo unlink"
+#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"
fi
-#fix permissions from git (TODO: should probably move this to git hook)
-chmod go= base/.zshenv base/.Xresources
+# create preferred folder structure
+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
-#create preferred folder structure
-cd "$HOME"
-mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1
-mkdir -m 700 tmp tmp/vim > /dev/null 2>&1
-cd -
+# ensure ostype
+if [ -z "$OSTYPE" ]; then
+ OSTYPE=$(uname -s | tr '[:upper:]' '[:lower:]')
+fi
-#accomodate linuxisms
-fex='-perm -ugo=x'
+# accomodate multiple userlands
+lnargs=-sfnv
case "$OSTYPE" in
- *bsd*) lnargs=-sFhvw
- d1='-depth 1'
- bsd=yes;;
- *) lnargs=-sfnv
- d1='-mindepth 1 -maxdepth 1'
- #android busybox find doesn't have -execute
- #and its sh doesn't set OSTYPE :DD
- if [ -z "$ANDROID_ROOT" ]; then
- fex=-executable
- fi;;
+ freebsd*) lnargs=-sFhv;;
+ netbsd|openbsd*) lnargs=-sfhv;;
esac
l() {
- # TODO: use install?
- [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$x}" "$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"
}
-find "$PWD/base" $d1 | while read -r x; do
- l "$HOME/`basename "$x"`"
-done
-find bin share $d1 | while read -r x; do
- l "$HOME/$x" "$PWD/$x"
-done
-find "$PWD/xdg" $d1 | while read -r x; do
- l "${XDG_CONFIG_HOME:-$HOME/etc}/`basename "$x"`"
-done
-find "$PWD/urxvt-ext" -type f $fex -mindepth 1 -maxdepth 2 | while read -r x; do
- l "$HOME/.urxvt/ext/`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
-cd ~
-if [ -n "$bsd" ]; then
- touch .hushlogin
+# 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
- #FreeBSD tries `_secure_path' on `.login_conf' before reading the database,
- #so it needs to be compiled and unlinked for it to actually take effect.
- rm .login_conf.db
- cap_mkdb .login_conf
+# 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
-unlink .login_conf
-cd -
+
+# vim: sts=4 sw=4 et