Skip to content
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

Fix hardcoded app icon and change name #4

Merged
merged 2 commits into from
Jun 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pick.desktop → pick-colour-picker.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Comment=Pick is a colour picker
Comment[en_us]=Pick is a color picker
GenericName=Colour Picker
GenericName[en_us]=Color Picker
Icon=pick.png
Icon=pick-colour-picker
Exec=pick-colour-picker
Terminal=false
Actions=AboutDialog;PickFirst
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
package_dir={'pick': 'pick'},

data_files=[
(sys.prefix+'/share/applications',['pick.desktop']),
(sys.prefix+'/share/pixmaps', ['pick.png'])
(sys.prefix+'/share/applications',['pick-colour-picker.desktop']),
(sys.prefix+'/share/pixmaps', ['pick-colour-picker.png'])
] + icons,

zip_safe=True,
Expand Down