22ffd7ed07
* Update PCSX2 to use the upstream AppImage. * Complete PCSX2 standalone integration. * Update volume controls to use mapped volume mode. * Update GTK3 to build additional required bits.
60 lines
1.2 KiB
Bash
Executable file
60 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile
|
|
|
|
case $1 in
|
|
pre)
|
|
|
|
if [ "${DEVICE_FAKE_JACKSENSE}" == "true" ]
|
|
then
|
|
systemctl stop headphones
|
|
fi
|
|
|
|
if [ "${DEVICE_VOLUMECTL}" == "true" ]
|
|
then
|
|
systemctl stop volume
|
|
fi
|
|
|
|
# RG351x devices are notorious for losing USB when they sleep.
|
|
if [[ "${HW_DEVICE}" =~ RG351 ]]
|
|
then
|
|
modprobe -r dwc2
|
|
fi
|
|
|
|
alsactl store -f /storage/.config/asound.state
|
|
|
|
touch /run/.last_sleep_time
|
|
|
|
;;
|
|
post)
|
|
alsactl restore -f /storage/.config/asound.state
|
|
|
|
if [[ "${HW_DEVICE}" =~ RG351 ]]
|
|
then
|
|
modprobe -i dwc2
|
|
fi
|
|
|
|
if [ "${DEVICE_FAKE_JACKSENSE}" == "true" ]
|
|
then
|
|
systemctl start headphones
|
|
fi
|
|
|
|
if [ "${DEVICE_VOLUMECTL}" == "true" ]
|
|
then
|
|
systemctl start volume
|
|
fi
|
|
|
|
if [ "$(get_setting wifi.enabled)" == "1" ]
|
|
then
|
|
wifictl reconnect
|
|
fi
|
|
|
|
DEVICE_VOLUME=$(get_setting "audio.volume" 2>/dev/null)
|
|
amixer -M set "${DEVICE_AUDIO_MIXER}" ${DEVICE_VOLUME}% 2>&1 >/dev/null
|
|
|
|
### Call the brightness script to set to the last saved value.
|
|
/usr/lib/autostart/common/006-brightness
|
|
;;
|
|
esac
|