From 03aab682e06f31616699ef50fd3bf19cef106a0b Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Jun 2017 08:03:12 +0100 Subject: make available options more ... intuitive --- frontend/gui/graphics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontend/gui/graphics.py') diff --git a/frontend/gui/graphics.py b/frontend/gui/graphics.py index 270b8cf..a50a169 100755 --- a/frontend/gui/graphics.py +++ b/frontend/gui/graphics.py @@ -22,14 +22,14 @@ class Graphics(QtWidgets.QMainWindow): def install_package(self): pkgname = self.table_graphics.item(self.table_graphics.currentRow(), 1).text() - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoinstall'] + pkgname.split()) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-install'] + pkgname.split()) def uninstall_package(self): pkgname = self.table_graphics.item(self.table_graphics.currentRow(), 1).text() - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoremove'] + pkgname.split()) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-uninstall'] + pkgname.split()) def remove_orphans(self): - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoclean']) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'remove-orphans']) def exit_category(self): self.close() -- cgit v1.2.3