diff options
author | Mathias Bynens <mathias@qiwi.be> | 2012-04-10 11:29:34 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2012-04-10 11:29:34 +0200 |
commit | 03458f1c65b1192e4371e3dd4d3881f3d60e039a (patch) | |
tree | 327c22ffd4c49f5ebc38fdb10d00d7a0da93e075 /.bash_profile | |
parent | 61163c8a46cade892b0d492dace3e330f4d1e8e7 (diff) | |
download | dotfiles-03458f1c65b1192e4371e3dd4d3881f3d60e039a.tar.gz dotfiles-03458f1c65b1192e4371e3dd4d3881f3d60e039a.tar.bz2 dotfiles-03458f1c65b1192e4371e3dd4d3881f3d60e039a.zip |
.bash_profile: Add tab completion for `killall SystemUIServer`
Diffstat (limited to '.bash_profile')
-rw-r--r-- | .bash_profile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index 76e2dba..d69d7e0 100644 --- a/.bash_profile +++ b/.bash_profile @@ -23,4 +23,7 @@ export LANG="en_US" # Add tab completion for `defaults read|write NSGlobalDomain` # You could just use `-g` instead, but I like being explicit -complete -W "NSGlobalDomain" defaults
\ No newline at end of file +complete -W "NSGlobalDomain" defaults + +# Add tab completion for `killall SystemUIServer` +complete -W "SystemUIServer" killall
\ No newline at end of file |