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/sisyphus-gui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'frontend/gui/sisyphus-gui.py') diff --git a/frontend/gui/sisyphus-gui.py b/frontend/gui/sisyphus-gui.py index 244a9af..1cc4fb6 100755 --- a/frontend/gui/sisyphus-gui.py +++ b/frontend/gui/sisyphus-gui.py @@ -48,17 +48,17 @@ class Sisyphus(QtWidgets.QMainWindow): def install_package(self): pkgname = self.input.text() - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoinstall'] + pkgname.split()) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-install'] + pkgname.split()) def uninstall_package(self): pkgname = self.input.text() - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoremove'] + pkgname.split()) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-uninstall'] + pkgname.split()) def upgrade_system(self): subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoupgrade']) def remove_orphans(self): - subprocess.Popen(['xterm', '-e', 'sisyphus', 'autoclean']) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'remove-orphans']) def accesories_category(self): self.window = Accesories() -- cgit v1.2.3