23 lines
561 B
Bash
23 lines
561 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
### Restore previous governors before going to sleep
|
|
|
|
. /etc/profile
|
|
|
|
### Grab the old governors.
|
|
OLD_CPU_FREQ=$(get_setting "sleep.cpugovernor")
|
|
if [ ! -n "${OLD_CPU_FREQ}" ]; then
|
|
OLD_CPU_FREQ="schedutil"
|
|
fi
|
|
|
|
OLD_GPU_FREQ=$(get_setting "sleep.gpugovernor")
|
|
if [ ! -n "${OLD_GPU_FREQ}" ]; then
|
|
OLD_GPU_FREQ="simple_ondemand"
|
|
fi
|
|
|
|
# Restore old governors.
|
|
set_cpu_gov "${OLD_CPU_FREQ}"
|
|
set_dmc_gov "${OLD_CPU_FREQ}"
|
|
set_gpu_gov "${OLD_GPU_FREQ}"
|