Okaaaaay... I've created a shutdown file here:
Code:
/storage/.config/shutdown.sh
And created this script, putting in the backlight command under the poweroff option.
Code:
case "$1" in
halt)
# your commands here
;;
poweroff)
# your commands here
;;
reboot)
# your commands here
;;
*)
# your commands here
;;
esac
This works with the software power off, but will mean I need to flick the power switch (which'll be mounted in an under counter cupboard) to get it to turn back on. So, not ideal, but it'll work for now.
:)EDITED: 26 Aug 2018 21:20 by GRAPHITONE