Is there a list of all the defaults controlled by this “defaults write” command? I’ve seen this used all the time to set OS-specific values but it seems the available commands are passed down by word of mouth bs a PDF with the possibilities listed.
Wish there was a way to delete the dock altogether. Not just hide it until hovering mouse in the area.
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
And one to change the columns and rows of the icons on the launchpad:
defaults write com.apple.dock springboard-columns -int X
Change ‘X’ into the number of icons to be shown in a single row (e.g 9).
defaults write com.apple.dock springboard-rows -int X
Change ‘X’ to the number of rows (e.g 3).
Don’t forget to restart the Dock!
Here I am I'm trying to make more space for App icons because it's too crowded, while others are inserting blank spaces into the Dock.My problem with these separators is, that they take to much space (like a whole width of an icon).
I’ve not had to redo them and my machine has been restarted a number of times since I made the change. In fact, I’m pretty sure I changed them during the last version of macOS and even the upgrade didn’t reset them.A lot of people just change the autohide delay to 1,000 to do that.
Code:defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
Do these stick after a restart? I remember a few developers were having problems when they were making apps to change the Launchpad when it first came out, but don't know if it's changed any since then?
Is it possible to insert additional lines as separators? Much like the line which currently separates my dock apps with downloads and actively running apps? That would save a lot of space compared to using empty spaces.
tried this..and got few more spaces than required how to get rid of them? is there a way to reset or delete extra separator?
thank youCan you not drag it off the dock just like an application icon?
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}'
killall Dock
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="small-spacer-tile";}'
killall Dock
defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}'
killall Dock
defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="small-spacer-tile";}'
killall Dock
defaults delete com.apple.dock persistent-apps
defaults delete com.apple.dock persistent-others
killall Dock