ui: added 64x64 icon

This commit is contained in:
Gustavo Iñiguez Goia 2023-02-11 21:50:49 +01:00
parent 9578f62e38
commit f5d357207e
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', setup(name='opensnitch-ui',
version=version, version=version,
description='Prompt service and UI for the opensnitch application firewall.', description='Prompt service and UI for the opensnitch interactive firewall application.',
long_description='GUI for the opensnitch application firewall\n\ long_description='GUI for the opensnitch interactive firewall application\n\
opensnitch-ui is a GUI for opensnitch written in Python.\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\ It allows the user to view live outgoing connections, as well as search\n\
to make connections.\n\ to make connections.\n\
@ -30,8 +30,9 @@ These rules can last forever, until the app restart or just one time.',
package_data={'': ['*.*']}, package_data={'': ['*.*']},
data_files=[('/usr/share/applications', ['resources/opensnitch_ui.desktop']), data_files=[('/usr/share/applications', ['resources/opensnitch_ui.desktop']),
('/usr/share/kservices5', ['resources/kcm_opensnitch.desktop']), ('/usr/share/kservices5', ['resources/kcm_opensnitch.desktop']),
('/usr/share/icons/hicolor/scalable/apps', ['resources/opensnitch-ui.svg']), ('/usr/share/icons/hicolor/scalable/apps', ['resources/icons/opensnitch-ui.svg']),
('/usr/share/icons/hicolor/48x48/apps', ['resources/opensnitch-ui.png']), ('/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'])], ('/usr/share/metainfo', ['resources/io.github.evilsocket.opensnitch.appdata.xml'])],
scripts = [ 'bin/opensnitch-ui' ], scripts = [ 'bin/opensnitch-ui' ],
zip_safe=False) zip_safe=False)