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 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 &) &