
This is a cool little trick I figured out a couple months ago. When you run an application in Mac OS X you’ll notice that the name of the application is displayed on the top left of the toolbar in Mac os X:
![]()
For whatever your reason may be- its a great prank to play on someone if anything, you can change the name that is displayed in the toolbar when running an application. It will also change the name of the application when looking at the “current application” in network administration tools such as Apple Remote Desktop.
(Applications that can be run in multiple languages- Itunes, IPhoto, Chrome, etc):
CFBundleName = "Google Chrome";
(I am using Google Chrome for this example but the application name in your Infoplist.strings file should match up with the application that you would like to change the name of)
![]()
(Applications that can be run in only one language):
<key>CFBundleName</key> <string>Google Chrome</string>
(I am using Google Chrome for this example but the application name in your info.plist file should match up with the application that you would like to change the name of)
If you would like more information on modifying plist.info files check out this article on MacTipsAndTricks.com!
Anson Alexander is a graduate from the University of Tampa with a degree in International Business and Information Systems.A previous IT Administrator for a medium size publication company, Anson has recently decided to work full time on his own business by publishing on AnsonAlex.com, publishing technology tutorials on YouTube and offering SEO, IT training and digital marketing services.His main interests include technology, social media, infographics, economics, marketing and web design.Connect with Anson on Google+.
And how to change the name displayed in the Dock without changing the app file name ?
The solutions listed above are the only way to change the name of an application in your dock – sorry!