diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-06-12 02:41:32 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-06-12 02:41:32 +0100 |
commit | bc02c657543a7d2be99ffbec9d002d698941f56f (patch) | |
tree | 14c405f483dd8eeec607505fae5713b9a3b6788c /frontend/gui/sisyphus-gui | |
parent | 8551f92e8f3f0cb51162635004e7b5ef86fb3e3e (diff) |
merge epkg into sisyphus : from now on sisyphus-cli will be the CLI frontend (old epkg) && sisyphus-gui will be the GUI frontend ;; the backend libsisyphus.sh will be ported to python as well
Diffstat (limited to 'frontend/gui/sisyphus-gui')
-rwxr-xr-x | frontend/gui/sisyphus-gui | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/gui/sisyphus-gui b/frontend/gui/sisyphus-gui new file mode 100755 index 0000000..1e29d08 --- /dev/null +++ b/frontend/gui/sisyphus-gui @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +# Sisyphus is a simple GUI for sisyphus, the portage wrapper +# Main Author : Ghiunhan Mamut @ Redcore Linux Project + +main() { + pushd /usr/share/sisyphus-gui + python3 sisyphus-gui.py + popd +} + +main |