Code Review
/
common
/
bash_it.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
f6950f9
)
Fix grammar on error message
author
Mark Szymanski
<mrman208@me.com>
Thu, 30 Jun 2011 13:30:46 +0000
(08:30 -0500)
committer
Mark Szymanski
<mrman208@me.com>
Thu, 30 Jun 2011 13:30:46 +0000
(08:30 -0500)
plugins/available/osx.plugin.bash
patch
|
blob
|
history
diff --git
a/plugins/available/osx.plugin.bash
b/plugins/available/osx.plugin.bash
index
e6271bd
..
76e4b9a
100644
(file)
--- a/
plugins/available/osx.plugin.bash
+++ b/
plugins/available/osx.plugin.bash
@@
-17,7
+17,7
@@
EOF
function dock-switch() {
if [ $(uname) = "Darwin" ]; then
-
+
if [ $1 = 3d ] ; then
defaults write com.apple.dock no-glass -boolean NO
killall Dock
@@
-28,10
+28,10
@@
function dock-switch() {
else
echo "usage:"
- echo "dock-switch 2d"
+ echo "dock-switch 2d"
echo "dock-switch 3d."
fi
else
- echo "
sorry. you're currently not using os x
"
+ echo "
Sorry, this only works on Mac OS X
"
fi
}