mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:57:13 +08:00
15 lines
366 B
Plaintext
15 lines
366 B
Plaintext
|
# vim:set ft=sh:
|
||
|
run_hook ()
|
||
|
{
|
||
|
tuxonice_sys="/sys/power/tuxonice"
|
||
|
tuxoniceui_cmd="/usr/sbin/tuxoniceui"
|
||
|
|
||
|
if [ -d $tuxonice_sys -a -x $tuxoniceui_cmd ]; then
|
||
|
if [ -c /dev/fb0 -a -d /etc/splash/tuxonice ]; then
|
||
|
tuxoniceui_opt="-f"
|
||
|
fi
|
||
|
|
||
|
echo $tuxoniceui_cmd $tuxoniceui_opt > $tuxonice_sys/user_interface/program
|
||
|
fi
|
||
|
}
|