diff options
author | Urbain Vaes <urbain@vaes.uk> | 2017-03-28 13:18:41 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2017-03-28 13:18:41 +0000 |
commit | 417264f45b08bb98a25c63afa4c5649f40006455 (patch) | |
tree | f9ce9bf5bd22568c6c181d16359786b185ea088a /bin | |
parent | c0ea7110a4bf3087505d313b047eda8970c8549a (diff) |
Remove unused zsh plugins
Diffstat (limited to 'bin')
-rw-r--r-- | bin/.dotmap | 35 | ||||
-rwxr-xr-x | bin/bin/books | 5 |
2 files changed, 0 insertions, 40 deletions
diff --git a/bin/.dotmap b/bin/.dotmap deleted file mode 100644 index f3a6946..0000000 --- a/bin/.dotmap +++ /dev/null @@ -1,35 +0,0 @@ -declare -A dotmap -dotmap[$HOME/.bashrc]=$HOME/dotfiles/bashrc -dotmap[$HOME/bin]=$HOME/dotfiles/bin -dotmap[$HOME/.config/dunst/dunstrc]=$HOME/dotfiles/dunstrc -dotmap[$HOME/.config/i3/config]=$HOME/dotfiles/i3/config -dotmap[$HOME/.config/i3status/config]=$HOME/dotfiles/i3/i3status.conf -dotmap[$HOME/.config/newsbeuter]=$HOME/dotfiles/newsbeuter -dotmap[$HOME/.config/nvim]=$HOME/dotfiles/vim -dotmap[$HOME/.config/qutebrowser]=$HOME/dotfiles/qutebrowser -dotmap[$HOME/.config/zathura/zathurarc]=$HOME/dotfiles/zathurarc -dotmap[$HOME/.gitconfig]=$HOME/dotfiles/gitconfig -dotmap[$HOME/.git_template]=$HOME/dotfiles/git_template -dotmap[$HOME/.inputrc]=$HOME/dotfiles/inputrc -dotmap[$HOME/.latexmkrc]=$HOME/dotfiles/latexmkrc -dotmap[$HOME/.ledgerrc]=$HOME/dotfiles/ledgerrc -dotmap[$HOME/.local/share/qutebrowser/userscripts]=$HOME/dotfiles/qutebrowser/userscripts -dotmap[$HOME/.mbsyncrc]=$HOME/dotfiles/mbsyncrc -dotmap[$HOME/.mrconfig]=$HOME/dotfiles/mr/mrconfig -dotmap[$HOME/.mrtrust]=$HOME/dotfiles/mr/mrtrust -dotmap[$HOME/.msmtprc]=$HOME/dotfiles/msmtprc -dotmap[$HOME/.mutt]=$HOME/dotfiles/mutt -dotmap[$HOME/.ncmpcpp]=$HOME/dotfiles/ncmpcpp -dotmap[$HOME/.password-store]=$HOME/dotfiles/passwords -dotmap[$HOME/.surfraw.bookmarks]=$HOME/dotfiles/surfraw.bookmarks -dotmap[$HOME/.tmux.conf]=$HOME/dotfiles/tmux.conf -dotmap[$HOME/.urxvt]=$HOME/dotfiles/urxvt -dotmap[$HOME/.vifm]=$HOME/dotfiles/vifm -dotmap[$HOME/.vim]=$HOME/dotfiles/vim -dotmap[$HOME/.vimperatorrc]=$HOME/dotfiles/vimperatorrc -dotmap[$HOME/.vimrc]=$HOME/dotfiles/vim/vimrc -dotmap[$HOME/.xinitrc]=$HOME/dotfiles/xinitrc -dotmap[$HOME/.Xresources]=$HOME/dotfiles/Xresources -dotmap[$HOME/.zgen]=$HOME/dotfiles/zsh/zgen -dotmap[$HOME/.zsh]=$HOME/dotfiles/zsh -dotmap[$HOME/.zshrc]=$HOME/dotfiles/zsh/zshrc diff --git a/bin/bin/books b/bin/bin/books deleted file mode 100755 index 8524277..0000000 --- a/bin/bin/books +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash -BOOKS_DIR="$HOME/Dropbox/books" -PDF=$(locate "$BOOKS_DIR/*.pdf") -TARGET=$(echo "${PDF//"$BOOKS_DIR/"/}" | dmenu -i -p "Open File:") -[[ -n $TARGET ]] && zathura "$BOOKS_DIR/$TARGET" & |