Merge pull request #97 from alundiak/alundiak-suggestion-2-finder

Suggested command to toggle "Quit Finder" menu item
This commit is contained in:
Marcel Bischoff 2016-02-29 20:46:27 +01:00
commit 89c70bdc70

View File

@ -501,6 +501,18 @@ killall Finder
### Layout
#### Show "Quit Finder" Menu Item
Makes possible to see Finder menu item "Quit Finder" with default shortcut <kbd>Cmd</kbd> + <kbd>Q</kbd>
```bash
# Enable
defaults write com.apple.finder QuitMenuItem -bool true && \
killall Finder
# Disable (Default)
defaults write com.apple.finder QuitMenuItem -bool false && \
killall Finder
```
#### Smooth Scrolling
Useful if youre on an older Mac that messes up the animation.
```bash