]> git.sev.monster Git - dotfiles.git/blobdiff - install.sh
add required/useful scripts, install.sh support
[dotfiles.git] / install.sh
index e7a959be15befaa0cf0f7cbada6d9cdab6c1cc70..713e7026a0f5d83106393c57bf85531dc2a8d853 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
 #!/bin/sh
 
-#fix permissions from git (should probably move this to git hook)
+#fix permissions from git (TODO: should probably move this to git hook)
 chmod go= base/.zshenv base/.Xresources
 
 if [ 0 -eq 1 ]; then
 chmod go= base/.zshenv base/.Xresources
 
 if [ 0 -eq 1 ]; then
@@ -12,12 +12,17 @@ if [ 0 -eq 1 ]; then
 fi
 
 l() {
 fi
 
 l() {
+       # TODO: use install?
        [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
 }
 
 find "$PWD/base" -depth 1 | while read -r x; do
        l "$HOME/`basename "$x"`"
 done
        [ -L "$1" -o \! -e "$1" ] && ln -sFhvw "$x" "$1"
 }
 
 find "$PWD/base" -depth 1 | while read -r x; do
        l "$HOME/`basename "$x"`"
 done
+mkdir "$HOME/bin"
+find "$PWD/bin" -depth 1 | while read -r x; do
+       l "$HOME/bin/`basename "$x"`"
+done
 find "$PWD/xdg" -depth 1 | while read -r x; do
        l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
 done
 find "$PWD/xdg" -depth 1 | while read -r x; do
        l "${XDG_CONFIG_HOME:-$HOME/.config}/`basename "$x"`"
 done
This page took 0.032168 seconds and 4 git commands to generate.