Skip to content

Commit 5d4771e

Browse files
committed
Added .desktop file and icon
1 parent 5f89117 commit 5d4771e

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

qopenvpn.desktop

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[Desktop Entry]
2+
Encoding=UTF-8
3+
Version=1.0
4+
Name=QOpenVPN
5+
GenericName=OpenVPN GUI
6+
Comment=Simple OpenVPN GUI written in PyQt for systemd based distributions
7+
Exec=qopenvpn
8+
Icon=qopenvpn
9+
StartupNotify=true
10+
Terminal=false
11+
Type=Application
12+
Categories=Qt;Network;

qopenvpn.png

1.98 KB
Loading

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
license = "GNU GPLv3",
1414
packages = ["qopenvpn"],
1515
package_data = {"qopenvpn": ["openvpn.svg", "openvpn_disabled.svg"]},
16+
data_files = [("share/applications", ["qopenvpn.desktop"]),
17+
("share/pixmaps", ["qopenvpn.png"])],
1618
scripts = ["scripts/qopenvpn"],
1719
requires = ["PyQt4"],
1820
)

0 commit comments

Comments
 (0)