Skip to content

Instantly share code, notes, and snippets.

View 50l3r's full-sized avatar
🏠
Working from home

50l3r 50l3r

🏠
Working from home
View GitHub Profile
@50l3r
50l3r / hidedock.md
Created September 3, 2025 14:01 — forked from mattitanskane/hidedock.md
How to hide the Dock on MacOS

I never use the Dock and all it does for me is come in the way when I'm resizing windows or clicking on stuff I can't access using just my keyboard.

Here's a way to hide the Dock so it doesn't get in the way anymore.

Run the following commands in the terminal.

# Hide Dock
defaults write com.apple.dock autohide -bool true && killall Dock
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock