diff options
-rwxr-xr-x | sisyphus-gui | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sisyphus-gui b/sisyphus-gui index 0d46356..887152e 100755 --- a/sisyphus-gui +++ b/sisyphus-gui @@ -20,9 +20,9 @@ checkifroot() { main() { if checkifroot; then - pushd /usr/share/sisyphus - python3 sisyphus-gui.py - popd + pushd /usr/share/sisyphus > /dev/null 2>&1 + tmux new-session -d -s sisyphus 'python3 sisyphus-gui.py' + popd > /dev/null 2>&1 fi } |