aboutsummaryrefslogtreecommitdiffstats
path: root/.bash_profile
diff options
context:
space:
mode:
authorMathias Bynens <mathias@qiwi.be>2012-04-10 11:29:34 +0200
committerMathias Bynens <mathias@qiwi.be>2012-04-10 11:29:34 +0200
commit03458f1c65b1192e4371e3dd4d3881f3d60e039a (patch)
tree327c22ffd4c49f5ebc38fdb10d00d7a0da93e075 /.bash_profile
parent61163c8a46cade892b0d492dace3e330f4d1e8e7 (diff)
downloaddotfiles-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_profile5
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