using boolean in lowercase to combine with other commands

This commit is contained in:
darlanmendonca 2015-12-09 17:38:22 -02:00
parent 3402eb8a81
commit 04f746c07b

View File

@ -395,11 +395,11 @@ Use your touchpad or mouse scroll wheel to interact with dock items. When enable
```bash ```bash
# Enable # Enable
defaults write com.apple.dock scroll-to-open -bool TRUE && \ defaults write com.apple.dock scroll-to-open -bool true && \
killall Dock killall Dock
# Disable # Disable
defaults write com.apple.dock scroll-to-open -bool FALSE && \ defaults write com.apple.dock scroll-to-open -bool false && \
killall Dock killall Dock
``` ```