]> git.sev.monster Git - dotfiles.git/blame - install.sh
update git email and name
[dotfiles.git] / install.sh
CommitLineData
1b8a4102 1#!/bin/sh
03bc64c4 2
8720834f 3#NOTE: .zshenv XDG paths are hardcoded to allow non-zsh install
4
84251d17 5# test
fef7b7c4 6devnull=/dev/null
8720834f 7if [ "$1" = "test" ]; then
fef7b7c4 8 echo "Running test -- no changes will be applied"
9 devnull=/dev/stdout
10 _cd() {
11 cd $*;
12 echo " cd $*";
13 echo "\$PWD=$PWD";
14 }
15 alias cd="_cd"
16 alias mkdir="echo mkdir"
7f359c8a 17 alias ln="echo ln"
18 alias rm="echo rm"
fef7b7c4 19 alias sh="echo sh"
7f359c8a 20fi
21
d50f11d1 22# create preferred folder structure
d877aef2 23cd ~
fef7b7c4 24mkdir -p bin etc share share/fonts .urxvt/ext .icons .themes >$devnull 2>&1
25mkdir -pm 700 var/tmp var/tmp/vim >$devnull 2>&1
26cd - >$devnull
1873e725 27
dcac60d9 28# ensure ostype
74024535 29if [ -z "$OSTYPE" ]; then
ff1a2414 30 OSTYPE=`uname -s | tr '[:upper:]' '[:lower:]'`
74024535 31fi
dcac60d9 32
33# accomodate multiple userlands
34lnargs=-sfnv
d877aef2 35case "$OSTYPE" in
fef7b7c4 36 freebsd*) lnargs=-sFhv;;
8720834f 37 netbsd|openbsd*) lnargs=-sfhv;;
cf9ecb6f 38esac
39
7f359c8a 40l() {
1390d028 41 # TODO: use install?
fef7b7c4 42 [ -L "$1" -o \! -e "$1" ] && ln $lnargs "${2:-$PWD/$x}" "$1" || \
43 echo "!!! File exists and is not a link: $1"
7f359c8a 44}
45
84251d17 46# link files
fef7b7c4 47find base -mindepth 1 -maxdepth 1 | while read -r x; do
7f359c8a 48 l "$HOME/`basename "$x"`"
49done
d877aef2 50find bin share -mindepth 1 -maxdepth 1 | while read -r x; do
fef7b7c4 51 l "$HOME/$x"
1390d028 52done
fef7b7c4 53find xdg -mindepth 1 -maxdepth 1 | while read -r x; do
8720834f 54 l "$HOME/etc/`basename "$x"`"
04ff96a4 55done
fef7b7c4 56find urxvt-ext -type f -perm -111 -mindepth 1 -maxdepth 2 | while read -r x; do
7f359c8a 57 l "$HOME/.urxvt/ext/`basename $x`"
82151901 58done
fef7b7c4 59find xorg/icons -type d -mindepth 1 -maxdepth 2 | while read -r x; do
dcac60d9 60 if [ -e "$x/index.theme" ]; then
61 l "$HOME/.icons/`basename "$x"`"
62 fi
7796231b 63done
fef7b7c4 64find xorg/themes -type d -mindepth 1 -maxdepth 1 | while read -r x; do
7796231b 65 l "$HOME/.themes/`basename "$x"`"
8720834f 66done
fef7b7c4 67find fonts -type d -mindepth 1 -maxdepth 1 | while read -r x; do
8720834f 68 l "$HOME/share/fonts/`basename "$x"`"
ff1a2414 69done
fef7b7c4 70#XXX: potential bug with newlines in profile name (if ff even takes it)
71#XXX: breaks on multiple profiles
72ffdir="`find "$HOME/.mozilla/firefox" -type d -mindepth 1 -maxdepth 1 | head -1 2>$devnull`"
73if [ -d "$ffdir" ]; then
74 find firefox -mindepth 1 -maxdepth 1 | while read -r x; do
75 l "$ffdir/`basename "$x"`"
76 done
77 cd "$ffdir"
78 echo "Updating user.js"
79 sh ./user-js-updater.sh
80 cd - >$devnull
81fi
04ff96a4 82
d50f11d1 83# run .zprofile to set up tmp
dcac60d9 84zsh ~/.zprofile
This page took 0.048894 seconds and 4 git commands to generate.