fixed one
This commit is contained in:
parent
4ba5e77347
commit
3a58e9a1fd
4
PKGBUILD
4
PKGBUILD
|
@ -1,9 +1,9 @@
|
||||||
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
||||||
pkgname=systrayupdater
|
pkgname=systrayupdater
|
||||||
pkgver=r49.b4cad83
|
pkgver=r52.4ba5e77
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="PyQt5 system tray applet notifier of available updates"
|
pkgdesc="PyQt5 system tray applet notifier of available updates"
|
||||||
arch=('x86_64')
|
arch=('any')
|
||||||
url="https://github.com/ericlay/$pkgname"
|
url="https://github.com/ericlay/$pkgname"
|
||||||
license=('GPL3')
|
license=('GPL3')
|
||||||
depends=('python'
|
depends=('python'
|
||||||
|
|
|
@ -117,6 +117,7 @@ quit.triggered.connect(app.quit)
|
||||||
# Create applet and place menu in it
|
# Create applet and place menu in it
|
||||||
tray = QSystemTrayIcon()
|
tray = QSystemTrayIcon()
|
||||||
tray.setIcon(icon)
|
tray.setIcon(icon)
|
||||||
|
tray.setVisible(True)
|
||||||
tray.setContextMenu(menu)
|
tray.setContextMenu(menu)
|
||||||
|
|
||||||
app.exec_()
|
app.exec_()
|
||||||
|
|
Loading…
Reference in New Issue