Show "Quit Finder" Menu Item

This commit is contained in:
Andrii Lundiak 2016-01-22 00:43:25 +01:00
parent d8b5f61596
commit 0b3b9d91db

View File

@ -482,6 +482,18 @@ killall Finder
### Layout ### 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 #### Smooth Scrolling
Useful if youre on an older Mac that messes up the animation. Useful if youre on an older Mac that messes up the animation.
```bash ```bash