mirror of
https://github.com/evilsocket/opensnitch.git
synced 2025-03-04 00:24:40 +01:00
ui: added 64x64 icon
This commit is contained in:
parent
9578f62e38
commit
f5d357207e
4 changed files with 5 additions and 4 deletions
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
BIN
ui/resources/icons/64x64/opensnitch-ui.png
Normal file
BIN
ui/resources/icons/64x64/opensnitch-ui.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue