ui: added 64x64 icon

This commit is contained in:
Gustavo Iñiguez Goia 2023-02-11 21:43:37 +01:00
parent e465d80fd8
commit 80586a9206
Failed to generate hash of commit
4 changed files with 5 additions and 4 deletions

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -10,8 +10,8 @@ from opensnitch.version import version
setup(name='opensnitch-ui',
version=version,
description='Prompt service and UI for the opensnitch application firewall.',
long_description='GUI for the opensnitch application firewall\n\
description='Prompt service and UI for the opensnitch interactive firewall application.',
long_description='GUI for the opensnitch interactive firewall application\n\
opensnitch-ui is a GUI for opensnitch written in Python.\n\
It allows the user to view live outgoing connections, as well as search\n\
to make connections.\n\
@ -30,8 +30,9 @@ These rules can last forever, until the app restart or just one time.',
package_data={'': ['*.*']},
data_files=[('/usr/share/applications', ['resources/opensnitch_ui.desktop']),
('/usr/share/kservices5', ['resources/kcm_opensnitch.desktop']),
('/usr/share/icons/hicolor/scalable/apps', ['resources/opensnitch-ui.svg']),
('/usr/share/icons/hicolor/48x48/apps', ['resources/opensnitch-ui.png']),
('/usr/share/icons/hicolor/scalable/apps', ['resources/icons/opensnitch-ui.svg']),
('/usr/share/icons/hicolor/48x48/apps', ['resources/icons/48x48/opensnitch-ui.png']),
('/usr/share/icons/hicolor/64x64/apps', ['resources/icons/64x64/opensnitch-ui.png']),
('/usr/share/metainfo', ['resources/io.github.evilsocket.opensnitch.appdata.xml'])],
scripts = [ 'bin/opensnitch-ui' ],
zip_safe=False)