aboutsummaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-17 13:45:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-17 13:45:37 +1200
commitf4d2d80e2d92b0ce249b68dda53e7e3f87c25b64 (patch)
tree849935883296d670a9b050fc382cfff6f8cdbf52 /install
parentsafe-updates now configured in ~/.my.cnf (diff)
downloaddotfiles-f4d2d80e2d92b0ce249b68dda53e7e3f87c25b64.tar.gz
dotfiles-f4d2d80e2d92b0ce249b68dda53e7e3f87c25b64.zip
Add Ncmpcpp configuration
Diffstat (limited to 'install')
-rwxr-xr-xinstall8
1 files changed, 6 insertions, 2 deletions
diff --git a/install b/install
index ace0e6cf..cc9973bd 100755
--- a/install
+++ b/install
@@ -13,7 +13,8 @@
# -d -- mysql/psql
# -g -- GnuPG
# -m -- Mutt
-# -n -- Newsbeuter
+# -n -- Ncmpcpp
+# -r -- Newsbeuter
# -t -- tmux
# -x -- X11
#
@@ -84,7 +85,7 @@ lns "$dotfiles"/vim/vimrc "$HOME"/.vimrc
lns "$dotfiles"/vim "$HOME"/.vim
# Link in shell stuff
-while getopts :dgmntx opt; do
+while getopts :dgmnrtx opt; do
case $opt in
d)
lns "$dotfiles"/mysql/my.cnf "$HOME"/.my.cnf
@@ -100,6 +101,9 @@ while getopts :dgmntx opt; do
lns "$dotfiles"/mutt "$HOME"/.mutt
;;
n)
+ lns "$dotfiles"/ncmpcpp "$HOME"/.ncmpcpp
+ ;;
+ r)
mkdir -p -- "$HOME"/.config "$HOME"/.local/share/newsbeuter
lns "$dotfiles"/newsbeuter "$HOME"/.config/newsbeuter
;;