Created
February 3, 2025 15:46
-
-
Save Syakhisk/bd72e5559425e85c9c619d11e45c795e to your computer and use it in GitHub Desktop.
MacOS hide doc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hide Dock | |
defaults write com.apple.dock autohide -bool true && killall Dock | |
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock | |
# defaults write com.apple.dock no-bouncing -bool TRUE && killall Dock | |
# Restore Dock | |
defaults write com.apple.dock autohide -bool false && killall Dock | |
defaults delete com.apple.dock autohide-delay && killall Dock | |
# defaults write com.apple.dock no-bouncing -bool FALSE && killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment