Hi,
I'm trying to use a shell script to change the default icons of native apps e.g. iTunes, Mail, Safari etc.
I've been trying to use the seticon command line utility that is part of osxutils, mostly because I don't want to have to install developer tools / may encounter a machine without them.
The current code is as follows:
The app runs without error, and returns "" as a result, however the icon remains the unchanged. Does anyone know how to fix this, or have another programatic solution that I can use on a non-dev machine?
Thanks!
I'm trying to use a shell script to change the default icons of native apps e.g. iTunes, Mail, Safari etc.
I've been trying to use the seticon command line utility that is part of osxutils, mostly because I don't want to have to install developer tools / may encounter a machine without them.
The current code is as follows:
Code:
tell application "Finder"
set icon_path to "/Volumes/Data/Extras/Software/Icons/"
do shell script icon_path & "util/seticon -d " & icon_path & "icon.icns" & " /Applications/Stickies.app"
end tell
The app runs without error, and returns "" as a result, however the icon remains the unchanged. Does anyone know how to fix this, or have another programatic solution that I can use on a non-dev machine?
Thanks!