]> git.sev.monster Git - dotfiles.git/blobdiff - install.sh
sway: also bind kp_enter to terminal
[dotfiles.git] / install.sh
index 2da25899e2a58a11f0aa73715f57eb411c7501ed..32e5b61c7a4ec8bcb01d490e9d2f6f947ab51f02 100755 (executable)
@@ -2,86 +2,98 @@
 
 #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 .gnupg .ssh .termux >$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 fonts -mindepth 1 -maxdepth 1 -type d | while read -r x; do
-       l "$HOME/share/fonts/`basename "$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 gpg -mindepth 1 -maxdepth 1 \! -name '*.gpg' | while read -r x; do
-       l "$HOME/.gnupg/`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
-if which gpg >/dev/null 2>&1; then
-       find gpg -mindepth 1 -maxdepth 1 -name '*.gpg' | while read -r x; do
-               gpg --import "$x"
-       done
+
+# 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
-for y in ssh termux; do
-       find $y -mindepth 1 -maxdepth 1 | while read -r x; do
-               l "$HOME/.$y/`basename "$x"`"
-       done
-done
-x='fonts/Dina-ttf/Dina.ttf' l "$HOME/.termux/font.ttf"
+
+# 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
+
+# vim: sts=4 sw=4 et
This page took 0.033759 seconds and 4 git commands to generate.