From 36421eeee9f74cdb62dce4bcd7ec01e7e8273c17 Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Tue, 9 Apr 2024 10:38:25 -0700 Subject: [PATCH] chore: Fully disable joystickwake on GNOME --- system_files/desktop/shared/usr/bin/bazzite-joystickwake | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system_files/desktop/shared/usr/bin/bazzite-joystickwake b/system_files/desktop/shared/usr/bin/bazzite-joystickwake index b6593d6c..047d7f38 100755 --- a/system_files/desktop/shared/usr/bin/bazzite-joystickwake +++ b/system_files/desktop/shared/usr/bin/bazzite-joystickwake @@ -11,5 +11,7 @@ fi if [[ ${BASE_IMAGE_NAME} =~ "kinoite" ]]; then /usr/bin/joystickwake --command "qdbus org.kde.Solid.PowerManagement /org/kde/Solid/PowerManagement wakeup" "$@" else - /usr/bin/joystickwake --command "gnome-session-inhibit sleep 5" "$@" + # Do nothing on GNOME until issue with this making the lock screen irrelevant is fully resolved. + exit 0 + #/usr/bin/joystickwake "$@" fi