diff options
Diffstat (limited to 'frontend/gui/accesories.py')
-rwxr-xr-x | frontend/gui/accesories.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/gui/accesories.py b/frontend/gui/accesories.py index 530886f..32d3b68 100755 --- a/frontend/gui/accesories.py +++ b/frontend/gui/accesories.py @@ -22,14 +22,14 @@ class Accesories(QtWidgets.QMainWindow): def install_package(self): pkgname = self.table_accesories.item(self.table_accesories.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_accesories.item(self.table_accesories.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() |