From 0b3b9d91dbaa4025f2792dd87584491cdb421023 Mon Sep 17 00:00:00 2001 From: Andrii Lundiak Date: Fri, 22 Jan 2016 00:43:25 +0100 Subject: [PATCH] Show "Quit Finder" Menu Item --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 48747f9..695b651 100644 --- a/README.md +++ b/README.md @@ -482,6 +482,18 @@ killall Finder ### Layout +#### Show "Quit Finder" Menu Item +Makes possible to see Finder menu item "Quit Finder" with default shortcut Cmd + Q +```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 you’re on an older Mac that messes up the animation. ```bash