Photo of Gil Creque in a pink TV

Worm Icon I s t h e r e a w a y t o c o m p l e t e l y d i s a b l e M a c O S X D o c k ?

Is there a way to completely disable Dock?

# 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