]> git.sev.monster Git - dotfiles.git/blame_incremental - install.sh
changed urxvt matcher url pattern again
[dotfiles.git] / install.sh
... / ...
CommitLineData
1#!/bin/sh
2
3if [ 0 -eq 1 ]; then
4 alias mkdir="echo mkdir"
5 alias ln="echo ln"
6 alias rm="echo rm"
7 alias cap_mkdb="echo cap_mkdb"
8 alias unlink="echo unlink"
9fi
10
11#fix permissions from git (TODO: should probably move this to git hook)
12chmod go= base/.zshenv base/.Xresources
13
14#create preferred folder structure
15cd "$HOME"
16mkdir -p bin etc share .urxvt/ext > /dev/null 2>&1
17mkdir -m 700 tmp tmp/vim > /dev/null 2>&1
18cd -
19
20l() {
21 # TODO: use install?
22 [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "${2:-$x}" "$1"
23}
24
25find "$PWD/base" -depth 1 | while read -r x; do
26 l "$HOME/`basename "$x"`"
27done
28find bin share -depth 1 | while read -r x; do
29 l "$HOME/$x" "$PWD/$x"
30done
31find "$PWD/xdg" -depth 1 | while read -r x; do
32 l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
33done
34find "$PWD/urxvt-ext" -type f -perm -ugo=x -mindepth 1 -maxdepth 2 | while read -r x; do
35 l "$HOME/.urxvt/ext/`basename $x`"
36done
37touch "$HOME/.hushlogin"
38
39#FreeBSD tries `_secure_path' on `.login_conf' before reaading the database,
40#so it needs to be compiled and unlinked for it to actually take effect.
41cd "$HOME"
42rm .login_conf.db
43cap_mkdb .login_conf
44unlink .login_conf
45cd -
This page took 0.02852 seconds and 4 git commands to generate.