summaryrefslogtreecommitdiff
path: root/src/frontend/gui/sisyphus-gui.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-09-01 22:52:59 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-09-01 22:52:59 +0100
commitad95927e5b910eba9c35559b4631bb07563b9567 (patch)
treee53aae195ce6820377b19546c4d95da363953d28 /src/frontend/gui/sisyphus-gui.py
parent9c47992c1f338eefbe724ecf766abc57dc1fd966 (diff)
sisyphus : objectify package list arguments, get rid of xterm, run operations in background, progress bar to be implemented soon
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rwxr-xr-xsrc/frontend/gui/sisyphus-gui.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py
index 875124a..e6442e3 100755
--- a/src/frontend/gui/sisyphus-gui.py
+++ b/src/frontend/gui/sisyphus-gui.py
@@ -3,6 +3,8 @@ import sys, subprocess, sqlite3
from PyQt5 import QtCore, QtGui, QtWidgets, uic
from libsisyphus import *
+PKGLIST = self.database.item(self.database.currentRow(), 1).text()
+
class Sisyphus(QtWidgets.QMainWindow):
def __init__(self):
super(Sisyphus, self).__init__()
@@ -26,18 +28,16 @@ class Sisyphus(QtWidgets.QMainWindow):
(resolution.height() / 2) - (self.frameSize().height() / 2))
def install_package(self):
- pkgname = self.database.item(self.database.currentRow(), 1).text()
- subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-install'] + pkgname.split())
+ sisyphus_pkg_auto_install(PKGLIST.split())
def uninstall_package(self):
- pkgname = self.database.item(self.database.currentRow(), 1).text()
- subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-uninstall'] + pkgname.split())
+ sisyphus_pkg_auto_uninstall(PKGLIST.split())
def remove_orphans(self):
- subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-remove-orphans'])
+ sisyphus_pkg_auto_remove_orphans()
def upgrade_system(self):
- subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-upgrade'])
+ sisyphus_pkg_auto_system_upgrade()
def refresh_database(self):
sisyphus_pkg_system_update()