#!/bin/sh
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
现在,将它放在 /usr/systemd/system-sleep 文件夹中,并随意命名。
现在,输入sudo chmod +x "whatever you named your script"
我有同样的问题
您可以通过以下方式重新启动触摸板:
sudo modprobe -r psmouse
然后,
sudo modprobe psmouse
如果您从挂起唤醒时遇到此问题,请复制此脚本:
现在,将它放在 /usr/systemd/system-sleep 文件夹中,并随意命名。
现在,输入
sudo chmod +x "whatever you named your script"
设置中可能有一个选项。检查触摸板设置,或尝试重新安装触摸板驱动程序。
合上盖子暂停并唤醒笔记本电脑为我修复了它。