summaryrefslogtreecommitdiff
path: root/plugins/osx
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2011-06-01 09:33:49 +0200
committerRobby Russell <robby@planetargon.com>2011-06-01 09:33:49 +0200
commit7b0b83623fb54d21932014c9a6267e6dc03976db (patch)
tree9eac51c8ae668ec67a326710cd863f6717e723f6 /plugins/osx
parent23a082df129b12b6edf8ea04432b0cb2be0588fd (diff)
parent643a4e77f639c1742d1ce01d8028649ae12f8e62 (diff)
downloadzsh-7b0b83623fb54d21932014c9a6267e6dc03976db.tar.gz
zsh-7b0b83623fb54d21932014c9a6267e6dc03976db.tar.bz2
zsh-7b0b83623fb54d21932014c9a6267e6dc03976db.zip
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/osx')
-rw-r--r--plugins/osx/osx.plugin.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh
index 81eed5e92..a65ca642a 100644
--- a/plugins/osx/osx.plugin.zsh
+++ b/plugins/osx/osx.plugin.zsh
@@ -1,3 +1,9 @@
+alias showfiles='defaults write com.apple.finder AppleShowAllFiles TRUE; killall Finder'
+alias hidefiles='defaults write com.apple.finder AppleShowAllFiles FALSE; killall Finder'
+
+# Recursively delete .DS_Store files
+alias rm-dsstore="find . -name '*.DS_Store' -type f -delete"
+
function savepath() {
pwd > ~/.current_path~
}