From 04f746c07b4282492309d1871d8c6a4a28216fbd Mon Sep 17 00:00:00 2001 From: darlanmendonca Date: Wed, 9 Dec 2015 17:38:22 -0200 Subject: [PATCH] using boolean in lowercase to combine with other commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 86a1e24..a7d088c 100644 --- a/README.md +++ b/README.md @@ -395,11 +395,11 @@ Use your touchpad or mouse scroll wheel to interact with dock items. When enable ```bash # Enable -defaults write com.apple.dock scroll-to-open -bool TRUE && \ +defaults write com.apple.dock scroll-to-open -bool true && \ killall Dock # Disable -defaults write com.apple.dock scroll-to-open -bool FALSE && \ +defaults write com.apple.dock scroll-to-open -bool false && \ killall Dock ```