aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-28 02:23:35 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-28 02:23:35 +1200
commit11a71db8a2de27cd8bc8be6c6feeeb1a1ce1cad4 (patch)
tree946feec8ec64a929f4c7f74a09b01a1591f8af19 /install
parentGet rid of another display manager variable (diff)
downloaddotfiles-11a71db8a2de27cd8bc8be6c6feeeb1a1ce1cad4.tar.gz
dotfiles-11a71db8a2de27cd8bc8be6c6feeeb1a1ce1cad4.zip
Version terminfo sources and compile on install
Diffstat (limited to 'install')
-rwxr-xr-xinstall8
1 files changed, 7 insertions, 1 deletions
diff --git a/install b/install
index 51d68227..5b3c1ded 100755
--- a/install
+++ b/install
@@ -80,7 +80,6 @@ lns "$dotfiles"/git/gitconfig "$HOME"/.gitconfig
lns "$dotfiles"/readline/inputrc "$HOME"/.inputrc
lns "$dotfiles"/sh/profile "$HOME"/.profile
lns "$dotfiles"/sh/profile.d "$HOME"/.profile.d
-lns "$dotfiles"/terminfo "$HOME"/.terminfo
lns "$dotfiles"/vim/vimrc "$HOME"/.vimrc
lns "$dotfiles"/vim "$HOME"/.vim
@@ -122,3 +121,10 @@ while getopts :dgmnrtx opt; do
done
shift $((OPTIND-1))
+# Compile terminfo files
+if hash tic 2>/dev/null; then
+ for info in "$dotfiles"/terminfo/*.info; do
+ tic "$info"
+ done
+fi
+