-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
General Improvements #263
base: master
Are you sure you want to change the base?
General Improvements #263
Conversation
…ing an element of the logo.
…ite actions for the uninstaller and changed output to be more friendly
for file in $DIR/*.icns; do | ||
replace_app_icon "$file" | ||
done | ||
|
||
echo | ||
echo ' All done! Restart your computer.' | ||
echo " Thanks for installing flat.icns, we hope your enjoy all your lovely new icons!" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: ...we hope you'll enjoy all your...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I've fixed it in the next commit, when you're rewriting things over and over early in the morning, your bound to make a couple stupid mistakes :P
name=$(basename "$app" .app) | ||
icon="/icons_backup/$name.icns" | ||
if [ -d "$app" ]; then | ||
cp -f "$app/Contents/Resources/$name.icns" "/icons_backup/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about a $BACKUP_DIR
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea, added!
General Improvements, see tinalatif#263
Commit 1: Updated colours on Spotify and Steam icons, and fixed Steam icon missing an element of the logo. I don't have Illustrator, so I had to implement the changes in Inkscape and save them as SVG, but they can be converted back to AI files easily through Illustrator.
Commit 2: Added an uninstaller script, and modified the installer script to perform required actions for the uninstaller to work efficiently. Also made the output a bit nicer.
Commit 3: Fixed a typo from Commit 2