-# 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
- 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 -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 -mindepth 1 -maxdepth 1 | while read -r x; do l "$LOCAL/$x"; done
+find share -mindepth 1 -maxdepth 1 | while read -r x; do l "$share${x#share}"; done
+find etc -mindepth 1 -maxdepth 1 | while read -r x; do l "$etc${x#etc}"; done
+
+# xorg/wayland resources
+find gui -mindepth 1 -maxdepth 1 | while read -r y; do
+ case "${y#gui/}" in
+ icons|themes)
+ find "$y" -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+ [ ! -e "$x/index.theme" ] && continue
+ command -v gtk-update-icon-cache >$devnull 2>&1 &&
+ gtk-update-icon-cache -f "$x"
+ l "$share${y#gui}/$(basename "$x")"
+ done
+ ;;
+ fonts)
+ find "$y" -mindepth 1 -maxdepth 2 -type d | while read -r x; do
+ command -v mkfontscale >$devnull 2>&1 && mkfontscale "$x"
+ command -v 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"
+ l "$share${y#gui}/$(basename "$x")"
+ done
+ ;;
+ *)
+ find "$y" -mindepth 1 -maxdepth 1 | while read -r x; do
+ l "$share${x#gui}"
+ done
+ ;;
+ esac