Compare commits
No commits in common. "f21d019f506652a8c1621937270aa0d9ae1f69f1" and "2d3c6dec212c58828254c1c8b5b6b87edc0f12b5" have entirely different histories.
f21d019f50
...
2d3c6dec21
14
README.md
14
README.md
@ -32,11 +32,7 @@ This script aims to fix this.
|
||||
|
||||
Adding a script to `notifyrc` as event makes it possible to change settings when screen-locking begins.
|
||||
|
||||
When the screen is locked, the script will change the screen-timeout to a custom-value in the config `~/.config/powermanagementprofilesrc` (or a default of 10s).
|
||||
|
||||
This is done, so even after the System wakes up and activates the screens e.g. when mouse is moved, but no unlock is done, the screen begins to sleep quickly again.
|
||||
|
||||
After a successful unlock, the value from the config is reapplied.
|
||||
So after x seconds the screen will simply be forcefully turned off using `xset`.
|
||||
|
||||
<br>
|
||||
|
||||
@ -44,10 +40,4 @@ After a successful unlock, the value from the config is reapplied.
|
||||
|
||||
Place the file `event_screensaver` to a bin-location, for a local user this is typically `~/.local/bin/` and make it executeable.
|
||||
|
||||
In Settings under `Notifications > Applications > Configure > 'Screen Saver' > Configure Events...` for event locked & unlocked, enable `Run command` and add your script-location for `event_screensaver` and the event triggered.
|
||||
|
||||
Example:
|
||||
```
|
||||
Screen locked
|
||||
Run Command: ~/.local/bin/event_screenSaver locked
|
||||
```
|
||||
In Settings under `Notifications > Applications > Configure > 'Screen Saver' > Configure Events...` for event `Screen locked`, enable `Run command` and add your script-location for `event_screensaver`.
|
||||
|
@ -1,25 +1,7 @@
|
||||
#!/bin/sh
|
||||
SCREENSAVER_TIMEOUT_DEFAULT=10
|
||||
NORMAL_TIMEOUT_DEFAULT=1800
|
||||
|
||||
case "$1" in
|
||||
"locked")
|
||||
# Read timeout from KDE
|
||||
SCREENSAVER_TIMEOUT=$(kreadconfig5 --file powermanagementprofilesrc --group AC --group DPMSControl --key idleTime_screenSaver)
|
||||
TIMEOUT="${NORMAL_TIMEOUT:-$SCREENSAVER_TIMEOUT_DEFAULT}"
|
||||
;;
|
||||
# Sleep to timeout
|
||||
sleep 15
|
||||
|
||||
"unlocked")
|
||||
# Read timeout from KDE
|
||||
NORMAL_TIMEOUT=$(kreadconfig5 --file powermanagementprofilesrc --group AC --group DPMSControl --key idleTime)
|
||||
TIMEOUT="${NORMAL_TIMEOUT:-$NORMAL_TIMEOUT_DEFAULT}"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "$0 <locked|unlocked>"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Set timeout-value
|
||||
xset s ${TIMEOUT} ${TIMEOUT}
|
||||
# Disable screens
|
||||
xset dpms force off
|
||||
|
Loading…
x
Reference in New Issue
Block a user