Moode Forum
Is there Command to Shutdown Moodeaudio - Printable Version

+- Moode Forum (https://moodeaudio.org/forum)
+-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3)
+--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7)
+--- Thread: Is there Command to Shutdown Moodeaudio (/showthread.php?tid=6634)



Is there Command to Shutdown Moodeaudio - avior - 06-20-2024

Hi

Is there a command usig MPC to shutdown moodeaudio using remoto control
I have try the following but still can,t seem to get it to work


 many thanks

begin
prog = irexec
button = KEY_POWER
config = mpc shutdown now
end

begin
prog = irexec
button = KEY_POWER
config = mpc stop; sudo shutdown -h now
end


RE: Is there Command to Shutdown Moodeaudio - Tim Curtis - 06-20-2024

Create a script like below in your home directory for example /home/pi/shutdown_pi.sh
Code:
#!/bin/bash
mpc stop
poweroff

Mark it as executable
Code:
sudo chmod +x /home/pi/shutdown_pi.sh

Specify the script in your remote config
Code:
config = /home/pi/shutdown_pi.sh

If the remote config does not run as root then use sudo poweroff in the script.


RE: Is there Command to Shutdown Moodeaudio - avior - 06-20-2024

(06-20-2024, 10:46 AM)Tim Curtis Wrote: Create a script like below in your home directory for example /home/pi/shutdown_pi.sh
Code:
#!/bin/bash
mpc stop
poweroff

Mark it as executable
Code:
sudo chmod +x /home/pi/shutdown_pi.sh

Specify the script in your remote config
Code:
config = /home/pi/shutdown_pi.sh

If the remote config does not run as root then use sudo poweroff in the script.

Many Thanks Tim it works like charm