diff options
author | Karel Kočí <cynerd@email.cz> | 2017-09-18 21:04:04 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-09-18 21:04:04 +0200 |
commit | 39da53ab62b710a231cef8cea50bfa316816f2ad (patch) | |
tree | 013b95275afb91d4f8e575f5cf942f3429a61789 /install | |
parent | 04029c520f4cd1c7fbf9444e6ba5304b632d23f4 (diff) | |
download | myconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.tar.gz myconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.tar.bz2 myconfigs-39da53ab62b710a231cef8cea50bfa316816f2ad.zip |
Add completions for usbkey
Diffstat (limited to 'install')
-rwxr-xr-x | install | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -22,12 +22,14 @@ if ask "Install Bashrc"; then inst bashrc ~/.bashrc inst shellrc ~/.shellrc inst profile ~/.profile + mkdir -p ~/.bash_completions fi if ask "Install zshrc"; then inst zshrc ~/.zshrc inst shellrc ~/.shellrc inst zprofile ~/.zprofile + mkdir -p ~/.zsh_completions fi if ask "Install GIT configuration"; then @@ -117,4 +119,6 @@ fi if ask "Install usbkey script"; then inst local/bin/usbkey ~/.local/bin/usbkey + inst zsh_completions/usbkey ~/.zsh_completions/_usbkey + inst bash_completions/usbkey ~/.bash_completions/usbkey fi |