diff options
Diffstat (limited to 'frontend/gui/graphics.py')
-rwxr-xr-x | frontend/gui/graphics.py | 6 |
1 files changed, 3 insertions, 3 deletions
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() |