]> git.sev.monster Git - dotfiles.git/blame_incremental - install.sh
sway: also bind kp_enter to terminal
[dotfiles.git] / install.sh
... / ...
CommitLineData
1#!/bin/sh
2
3#NOTE: .zshenv XDG paths are hardcoded to allow non-zsh install
4
5: ${DEST:=$(realpath "$HOME")}
6: ${SRC:=$(dirname "$(realpath "$0")")}
7
8# test
9devnull=/dev/null
10if [ "$1" = "test" ]; then
11 echo "Running test -- no changes will be applied"
12 devnull=/dev/stdout
13 _cd() {
14 cd $*;
15 echo " cd $*";
16 echo "\$PWD=$PWD";
17 }
18 alias cd="_cd"
19 alias mkdir="echo -- mkdir"
20 alias ln="echo -- ln"
21 alias rm="echo -- rm"
22 alias sh="echo -- sh"
23fi
24
25# create preferred folder structure
26cd $DEST
27mkdir -p bin etc share/fonts share/themes share/icons >$devnull 2>&1
28which vim >$devnull 2>&1 && mkdir -pm 700 var/tmp/vim >$devnull 2>&1
29cd $SRC >$devnull
30
31# ensure ostype
32if [ -z "$OSTYPE" ]; then
33 OSTYPE=$(uname -s | tr '[:upper:]' '[:lower:]')
34fi
35
36# accomodate multiple userlands
37lnargs=-sfnv
38case "$OSTYPE" in
39 freebsd*) lnargs=-sFhv;;
40 netbsd|openbsd*) lnargs=-sfhv;;
41esac
42
43l() {
44 # TODO: use install?
45 [ -L "$1" -o \! -e "$1" ] && ln $lnargs "$SRC/${2:-$x}" "$DEST/${1:-$x}" ||
46 echo "!!! File exists and is not a link: $1"
47}
48
49# generic links
50find base -mindepth 1 -maxdepth 1 | while read -r x; do l "${x#base/}"; done
51find bin etc share -mindepth 1 -maxdepth 1 | while read -r x; do l; done
52
53# xorg/wayland resources
54find gui -mindepth 1 -maxdepth 1 | while read -r x; do
55 if [ "$x" = gui/fonts ]; then
56 find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do
57 which mkfontscale >$devnull 2>&1 && mkfontscale "$x"
58 which mkfontdir >$devnull 2>&1 && mkfontdir "$x"
59 [ "$(head -1 "$x/fonts.scale" >$devnull 2>&1)" = 0 ] &&
60 rm "$x/fonts.scale"
61 [ "$(head -1 "$x/fonts.dir" >$devnull 2>&1)" = 0 ] &&
62 rm "$x/fonts.dir"
63 done
64 elif [ "$x" = gui/icons ]; then
65 find $x -mindepth 1 -maxdepth 2 -type d | while read -r x; do
66 [ ! -e "$x/index.theme" ] && continue
67 which gtk-update-icon-cache >$devnull 2>&1 &&
68 gtk-update-icon-cache "$x"
69 done
70 fi
71 find "$x" -mindepth 1 -maxdepth 1 | while read -r x; do
72 l "share${x#gui}"
73 done
74done
75
76# gpg
77if which gpg >$devnull 2>&1; then
78 mkdir -p "$DEST/etc/gnupg"
79 find gnupg -mindepth 1 -maxdepth 1 \! -name '*.gpg' | while read -r x; do
80 l "etc/$x"
81 done
82 find gnupg -mindepth 1 -maxdepth 1 -name '*.gpg' | while read -r x; do
83 gpg --import "$x"
84 done
85fi
86
87# ssh
88find ssh -mindepth 1 -maxdepth 1 | while read -r x; do
89 l ".$x"; done
90
91# termux, assume it if android
92if [ $(uname -o) = 'Android' ]; then
93 mkdir -p "$DEST/.termux"
94 find termux -mindepth 1 -maxdepth 1 | while read -r x; do
95 l ".$x"; done
96 l ".termux/font.ttf" 'share/fonts/Dina-ttf/Dina.ttf'
97fi
98
99# vim: sts=4 sw=4 et
This page took 0.033186 seconds and 4 git commands to generate.