大多数私企都会设置在15分钟内鼠标没有动作就会锁屏并上报领导你在摸鱼
这里提供一种解决方法
首先,我们需要安装 xdotool
一个命令行工具,可以模拟键盘和鼠标输入。
在 Ubuntu/Debian 系统上,可以使用以下命令安装 xdotool:
sudo apt-get install xdotool
在 CentOS/RHEL 系统上,可以使用以下命令安装:
sudo dnf install xdotool
安装完成后,我们可以编写一个 shell 脚本来实现每 14 分钟移动鼠标到对角线的功能。
创建一个名为 mouse_move.sh
的文件,并添加以下内容:
#!/bin/bash
while true; do
# 获取屏幕分辨率
screen_width=$(xdpyinfo | grep dimensions | awk '{print $2}' | cut -d'x' -f1)
screen_height=$(xdpyinfo | grep dimensions | awk '{print $2}' | cut -d'x' -f2)
# 计算对角线坐标
x=$((screen_width - 50))
y=$((screen_height - 50))
# 移动鼠标到对角线
xdotool mousemove $x $y
# 等待 14 分钟
sleep 840
done
保存文件并赋予执行权限:
chmod +x mouse_move.sh
现在,你可以运行这个脚本,它会每 14 分钟将鼠标移动到屏幕的右下角:
./mouse_move.sh
这个脚本会一直运行,直到你手动停止它。如果你想让它在系统启动时自动运行,可以将它添加到 crontab 中。