mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
16 lines
261 B
Bash
16 lines
261 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
# De-activate the touch screen.
|
||
|
echo 1 >/sys/power/state-extended
|
||
|
|
||
|
# Prevent the following error on the last line:
|
||
|
# *write error: Operation not permitted*.
|
||
|
sleep 2
|
||
|
|
||
|
# Synchronize the file system.
|
||
|
sync
|
||
|
|
||
|
# Suspend to RAM.
|
||
|
echo mem >/sys/power/state
|
||
|
|