From fa6db73977fe0cf1d732f428852fa16d53d8283c Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 10 Feb 2025 12:14:46 -0500 Subject: [PATCH 1/2] chore: update the default hotkey to L2 Not all devices have an L3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ec5e91..3599a23 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Press the hotkey when in game. A png screenshot will appear on the SDCard, in `/ > [!IMPORTANT] > If one of the hotkeys in use is mapped to something else within MinUI, the pak may not trigger. -The default hotkey is `L3` - see the Input app to determine what this maps to on your device. To utilize a different hotkey, create a file named `hotkey` in the pak folder with the name of the key you want to monitor. Any of the buttons supported by [`minui-btntest`](https://github.com/josegonzalez/minui-btntest) are supported. You can also specify multiple by using a comma-separated list. +The default hotkey is `L2` - see the Input app to determine what this maps to on your device. To utilize a different hotkey, create a file named `hotkey` in the pak folder with the name of the key you want to monitor. Any of the buttons supported by [`minui-btntest`](https://github.com/josegonzalez/minui-btntest) are supported. You can also specify multiple by using a comma-separated list. ### Debug Logging From 82a83ed7b55814c6c103a912fab8d109bf80b937 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 10 Feb 2025 12:15:18 -0500 Subject: [PATCH 2/2] chore: update the default hotkey --- bin/service-on | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/service-on b/bin/service-on index 2fcadce..cb883ba 100755 --- a/bin/service-on +++ b/bin/service-on @@ -9,13 +9,13 @@ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$progdir/lib" main() { cd "$SDCARD_PATH" || return 1 - hotkey="HOTKEY_1" + hotkey="" if [ -f "$progdir/hotkey" ]; then hotkey="$(cat "$progdir/hotkey")" fi if [ -z "$hotkey" ]; then - hotkey="btn_l3" + hotkey="btn_l2" fi (PLATFORM="$PLATFORM" PROGDIR="$progdir" HOTKEY="$hotkey" "$bindir/screenshot-monitor" >"$LOGS_PATH/$PAK_NAME.service.txt" 2>&1 &) &