Work around the return-from-sleep sluggishness on panther lake
This is due to slow ramp after s2idle
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Temporarily switch to performance power profile on resume
|
||||
# to avoid sluggishness while the system catches up, then
|
||||
# drop back to balanced after 10 seconds.
|
||||
|
||||
if [[ $1 == "post" ]]; then
|
||||
powerprofilesctl set performance
|
||||
(sleep 10 && powerprofilesctl set balanced) &
|
||||
fi
|
||||
Reference in New Issue
Block a user