也可以改造成其它摸鱼软件,比如后台刷价格,满足条件之后提醒你该卖出了。
第一步:写脚本,保存为 rest_reminder.sh
#!/bin/bash
# 循环执行提醒任务
while true; do
# 使用 osascript 命令弹出消息框
osascript -e 'display alert "休息一下啦!" message "已经工作 30 分钟啦,建议休息 2 分钟哦。" buttons {"好的"} default button 1'
# 休眠 30 分钟( 30 * 60 秒)
sleep 1800
done
第二步:设置执行权限
chmod +x ./rest_reminder.sh
第三步:后台运行
nohup ./rest_reminder.sh &