remove Finder icon from Dock

Does anyone know a way to permanently remove the Finder icon from the Dock? Either by a Terminal command or a 3rd party software package?

MacBook Air, Mac OS X (10.7.2)

Posted on Apr 14, 2012 8:16 AM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Apr 14, 2012 9:15 AM

The "why" really isn't all that important. I just want to make some space in the Dock and the Finder icon is pretty much useless.

24 replies
Sort By: 

May 31, 2012 3:58 PM in response to Captain Apollo

Lanny is wrong. A running app doesn't need to show up in the dock. Some are displayed in the menu bar, some aren't visible anywhere. I found a solution to your question at http://apple.stackexchange.com/questions/30415/how-can-i-remove-the-finder-icon- from-my-dock which adds REMOVE_FROM_DOCK to your dock icon's context menu. It doesn't quit Finder, it just adds the option to, well, remove it from the dock.


Here's the quick way: Run this one-liner in Terminal and that's it.

f=/System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus; sudo cp $f.plist $f-old.plist; sudo defaults write $f finder-running -array-add '<dict><key>command</key><integer>1004</integer><key>name</key><string>REMOVE_FROM_DOCK</string></dict>'; sudo chmod 644 $f.plist; osascript -e 'quit app "Dock"'

Reply

May 31, 2012 4:20 PM in response to Monostratos

If you want to remove the dock icon automatically at login, just save this little AppleScript as an application and add it to your login item in your System Preferences. It will only work if you've already run the previous line of code in Terminal.


tell application "System Events" to tell UI element "Finder" of list 1 of process "Dock" perform action "AXShowMenu" click menu item "REMOVE_FR​OM_DOCK" of menu 1 end tell

If the script doesn't work, you've probably not enabled GUI scripting. Go to System Preferences / Universal Access, and check the box that says Enable support for assistive devices.

Reply

Dec 21, 2012 7:27 AM in response to Monostratos

Hey Monostratos, i am seeing this error message when running your apple script


error "System Events got an error: Can’t get menu item \"REMOVE_FR​OM_DOCK\" of menu 1 of UI element \"Finder\" of list 1 of process \"Dock\"." number -1728 from menu item "REMOVE_FR​OM_DOCK" of menu 1 of UI element "Finder" of list 1 of process "Dock"



I ran the terminal command, so I can right click manually and remove it from the dock, and I have enabled support for assistive devices.


Any thoughts?


Thanks for your time

Reply

Feb 20, 2014 4:08 AM in response to donedamned

I have OS X 10.9 installed and I tried all the stuff metioned here, but the result is strange.


I run the terminal comand:

f=/System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus; sudo cp $f.plist $f-old.plist; sudo defaults write $f finder-running -array-add '<dict><key>command</key><integer>1004</integer><key>name</key><string>REMOVE_FROM_DOCK</string></dict>'; sudo chmod 644 $f.plist; osascript -e 'quit app "Dock"'


I created a AppleScrict Script and put it to autostart

tellapplication "System Events"

tell UI element "Finder" of list 1 of process "Dock"

perform action "AXShowMenu"

click the last menu item of menu 1

end tell

end tell

I changed the DockMenus.plist file and add this stuff as explained previously

1) finder-running

2) trash


in the plist file and add at the end of both (but between the tags <array> and </array>) in both the following:


<dict>

<key>command</key>

<integer>1004</integer>

<key>name</key>

<string>REMOVE_FROM_DOCK</string>

</dict>

Which is in the following path:

System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus.plist

And I also used the Terminal command

killall Dock


At the end the Finder icon has the option to remove it from the dock, but there is still a glow that it's running, which is very ugly and moves if you open more apps as you can see in the screenshot. And the Scrict is always open after a restart of the laptop.


User uploaded file


Do you know how to remove this ungly Finder remains?

I appreciate any help 🙂

Reply

Apr 14, 2012 9:20 AM in response to Captain Apollo

Remember, that any running program is always shown in the Dock, if the Finder wasn't running, you wouldn't have a Desktop.


So, if you quit the Finder, you would theoretically be able to remove it from the Dock, but then you wouldn't have a Dock, duhh.

Reply

Jan 28, 2013 10:38 PM in response to Monostratos

Hey Monostratos (:


Script worked perfeclty (: Finally no Dock...


It did also removed it from the CMD + Tab menu. I don't need it there but I did like it. Any way to get that back?


Also, would your solution also work for other apps? The specific one I'm thinking of is BOINC, which I always have running. But it also appears on the mac menu bar. For now it's also constantly on the dock and in the CMD + Tab menu...

Any way to remove it from those two places while still having it run and stay in the top menu bar?



Cheers (:

Reply

Feb 15, 2013 10:34 AM in response to softwater

That is incorrect - Monostratos came with a pretty good solution that actually adds the "remove" button. However the problem is with making it happen by itself whenever you turn on your mac.


tell application "System Events" to tell UI element "Finder" of list 1 of process "Dock"

perform action "AXShowMenu"

click menu item "REMOVE_FR​OM_DOCK" of menu 1

end tell


Seems not to work.

Reply

Feb 15, 2013 7:42 PM in response to rojvol

Yes, sorry I missed the first half of the solution (editing the plist). To make the Applescript work, change it to this:


tell application "System Events"

tell UI element "Finder" of list 1 of process "Dock"

perform action "AXShowMenu"

click the last menu item of menu 1

end tell

end tell

Reply

Feb 15, 2013 8:07 PM in response to rojvol

rojvol wrote:


is it problem if i forget to backup original dock file? I cant see why is it wrong.



The Terminal script you ran backed it up for you. You can find the original here:


System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus-old.plist


If you want to undo the entire procedure, just delete the file called 'DockMenus.plist' and then rename 'DockMenus-old.plist' to 'DockMenus.plist'.


After that, in Terminal type


killall Dock


and press 'return'.


Your Finder icon will reappear without the 'Remove from Dock' menu. If you put the Applescript in your login items, don't forget to remove that, too.

Reply

Oct 30, 2013 12:04 AM in response to lllusion

Just find: 1) finder-running and 2) trash in the plist file and add at the end of both (but between the tags <array> and </array>) in both the following:


<dict>

<key>command</key>

<integer>1004</integer>

<key>name</key>

<string>REMOVE_FROM_DOCK</string>

</dict>


I did it with Text Wrangler.

It will let you show up the Remove From Dock Option when you click on the finder and trash icons on MAVERICKS.

Regards,

Reply

Mar 5, 2014 12:21 PM in response to Captain Apollo

Dear member,

How can I remove this hack (I am new on the mac world) ?


f=/System/Library/CoreServices/Dock.app/Contents/Resources/DockMenus; sudo cp $f.plist $f-old.plist; sudo defaults write $f finder-running -array-add '<dict><key>command</key><integer>1004</integer><key>name</key><string>REMOVE_F ROM_DOCK</string></dict>'; sudo chmod 644 $f.plist; osascript -e 'quit app "Dock"'


And how can I generally remove hacks ?

Is where perhaps one folder with installed hacks ?

Very very thanks for your answer.


Message was edited by: ClaudeFinder

Reply

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

remove Finder icon from Dock

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.