Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GMU: Keep the music playing when turning off display #1749

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/keymon/keymon.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,18 @@ void deepsleep(void)
//
void suspend_exec(int timeout)
{
bool stay_awake = timeout == -1;
keyinput_disable();

// pause playActivity
system("playActivity stop_all");

// suspend
suspend(0);
if (!stay_awake) {
suspend(0);
setVolume(0);
}
rumble(0);
setVolume(0);
display_setBrightnessRaw(0);
display_off();
system_powersave_on();
Expand Down
5 changes: 4 additions & 1 deletion static/packages/App/Music Player (GMU)/App/Gmu/launch.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
#!/bin/sh
my_dir=`dirname $0`
my_dir=$(dirname $0)
cd $my_dir

echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
. /mnt/SDCARD/.tmp_update/script/stop_audioserver.sh

touch /tmp/stay_awake

HOME=/mnt/SDCARD/App/Gmu
LD_LIBRARY_PATH=/mnt/SDCARD/.tmp_update/lib/parasyte:./lib:$LD_LIBRARY_PATH
export LD_PRELOAD=./lib/libSDL-1.2.so.0
./gmu.bin -c gmu.miyoo.conf
unset LD_PRELOAD

rm -f /tmp/stay_awake
Loading