From: Mark Szymanski Date: Thu, 30 Jun 2011 13:30:46 +0000 (-0500) Subject: Fix grammar on error message X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=1a969458858a5ad892ab9a6b36592cf50348d162;p=common%2Fbash_it.git Fix grammar on error message --- diff --git a/plugins/available/osx.plugin.bash b/plugins/available/osx.plugin.bash index e6271bd..76e4b9a 100644 --- 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 }