diff options
| -rw-r--r-- | INSTALL | 18 | ||||
| -rwxr-xr-x | completion/crypt.bash | 1 | ||||
| -rwxr-xr-x | completion/crypt.zsh | 1 |
3 files changed, 16 insertions, 4 deletions
@@ -1,7 +1,17 @@ To install crypt you can simply rename `crypt.sh` to `crypt` and move it in your path. -For example by doing +For example by doing: + sudo cp crypt.sh /usr/bin/crypt -Similarly, to install the autocomplete scripts you can do something like - sudo cp extra/crypt.bash /usr/share/bash-completion/completions/crypt - sudo cp extra/crypt.zsh /usr/share/zsh/site-functions/_crypt + +Similarly to install cryptmenu (which is a dmenu interface) you can do: + + sudo cp cryptmenu.sh /usr/bin/cryptmenu + +Note that cryptmenu requires both dmenu and crypt to work. + + +To install the autocomplete scripts you can do something like: + + sudo cp completion/crypt.bash /usr/share/bash-completion/completions/crypt + sudo cp completion/crypt.zsh /usr/share/zsh/site-functions/_crypt diff --git a/completion/crypt.bash b/completion/crypt.bash index 3074ff5..8d2ae73 100755 --- a/completion/crypt.bash +++ b/completion/crypt.bash @@ -2,6 +2,7 @@ # # Copy to /usr/share/bash-completion/completions/crypt +# TODO: edit & other actions _crypt() { COMPREPLY=() diff --git a/completion/crypt.zsh b/completion/crypt.zsh index 3055baf..41f06c5 100755 --- a/completion/crypt.zsh +++ b/completion/crypt.zsh @@ -3,6 +3,7 @@ # copy to /usr/share/zsh/site-functions/_crypt +# TODO: edit & other actions _crypt() { local IFS=$'\n' local location |
