-# link files
-find base -mindepth 1 -maxdepth 1 | while read -r x; do
- l "$HOME/`basename "$x"`"
-done
-# requires existing source tree and `make dabuild`
-for x in dabuild dabuild-admin; do
- x="$HOME/src/docker-abuild/$x"
- if [ -e "$x" ]; then
- l "$HOME/bin/`basename "$x"`" "$x"
- fi
-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 -mindepth 1 -maxdepth 2 -type f -perm -111 | while read -r x; do
- l "$HOME/.urxvt/ext/`basename $x`"
-done
-find xorg/icons -mindepth 1 -maxdepth 2 -type d | while read -r x; do
- if [ -e "$x/index.theme" ]; then
- d="$HOME/.icons/`basename "$x"`"
- l $d
- which gtk-update-icon-cache >/dev/null 2>&1 && gtk-update-icon-cache -qtf $d
- unset d
- fi
-done
-find xorg/themes -mindepth 1 -maxdepth 1 -type d | while read -r x; do
- l "$HOME/.themes/`basename "$x"`"
-done
-find fonts -mindepth 1 -maxdepth 1 -type d | 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