diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-29 07:10:19 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-29 07:10:19 +0200 |
commit | b9d4f7fcd076551c48d93839043dbacbeec2bb79 (patch) | |
tree | 5960435d3a3eee8e6f23e3f073197d814aca4c8c /zsh | |
parent | 10b92c3b6f308922a064c9320460ef5c8bb70251 (diff) |
zsh: fix/add completions, hostnames
Diffstat (limited to 'zsh')
-rw-r--r-- | zsh/.zsh/completions/_crypt_disk | 4 | ||||
-rw-r--r-- | zsh/.zsh/completions/_net_profile (renamed from zsh/.zsh/completions/_net-profile) | 5 | ||||
-rw-r--r-- | zsh/.zshrc | 5 |
3 files changed, 10 insertions, 4 deletions
diff --git a/zsh/.zsh/completions/_crypt_disk b/zsh/.zsh/completions/_crypt_disk new file mode 100644 index 0000000..656310e --- /dev/null +++ b/zsh/.zsh/completions/_crypt_disk @@ -0,0 +1,4 @@ +#compdef crypt-disk + +_arguments "1: :(mount umount)" + diff --git a/zsh/.zsh/completions/_net-profile b/zsh/.zsh/completions/_net_profile index 4804283..a4be43d 100644 --- a/zsh/.zsh/completions/_net-profile +++ b/zsh/.zsh/completions/_net_profile @@ -1,3 +1,4 @@ -#compdef net_profile - +#compdef net-profile + _arguments "1: :($(ls -1 ~/.net_profiles | cut -d '.' -f 1))" + @@ -103,7 +103,7 @@ case `hostname` in HOSTCOLOR_BG=white HOSTCOLOR_FG=black ;; - x|pi*|*.uberspace.de) + bogues|curry|iverson|jordan|nowitzki|oneal|*.uberspace.de) HOSTCOLOR_BG=magenta HOSTCOLOR_FG=black ;; @@ -155,7 +155,7 @@ case `hostname` in umask u=rwx,g=rwx,o=rx alias tmux="tmux -f ~/.tmux.`hostname`.conf" ;; - x|pi*|*.uberspace.de) + bogues|curry|iverson|jordan|nowitzki|oneal|*.uberspace.de) PATH=/usr/lib/colorgcc/bin:$PATH ;; esac @@ -220,6 +220,7 @@ alias muxa='tmux attach -t' alias easy_install_home='easy_install --install-dir=$HOME/.local/lib/python/site-packages' alias pip_home='install --install-option="--install-purelib=~/.local/lib/python/site-packages"' alias npm_install_home='npm install -g --prefix ~/.local/lib/node' +alias castnow_home='castnow --address 192.168.0.5' alias my_ip='echo "$(curl 'https://api.ipify.org' 2>/dev/null)"' |