diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2024-07-09 19:55:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-09 19:55:13 +0100 |
| commit | 10b1a43d66680a0b21723ae7a4dd0f6db36c32f0 (patch) | |
| tree | 2c3a047b9a805f8900fffb333c9bb55b3fa5db57 | |
| parent | 4f11a7d836ad982fb2217129f09b390d62393e46 (diff) | |
| parent | 3d6c815db1f83eda3b72be393edb520976719a4b (diff) | |
| download | decky-installer-10b1a43d66680a0b21723ae7a4dd0f6db36c32f0.tar.gz decky-installer-10b1a43d66680a0b21723ae7a4dd0f6db36c32f0.zip | |
Merge pull request #17 from TLD136/main
Make Zenity work as root on Wayland
| -rw-r--r-- | gui/user_install_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/user_install_script.sh b/gui/user_install_script.sh index ff7be0e..1d7a119 100644 --- a/gui/user_install_script.sh +++ b/gui/user_install_script.sh @@ -58,7 +58,7 @@ if (( $EUID != 0 )); then zen_nospam --title="Decky Installer" --width=300 --height=100 --warning --text "You appear to not be on a deck.\nDecky should still mostly work, but you may not get full functionality." fi - echo "$PASS" | sudo -S -k bash "$0" "$@" # rerun script as root + echo "$PASS" | sudo -E -S -k bash "$0" "$@" # rerun script as root exit 1 fi |
