当在图形界面下打开了一个终端的时候,可以这样做,每小时会出现一行提醒信息。
使用命令crontab -e,然后加入如下几行代码:
#My add these lines
#min hour day month week command
#warn user to rest a while
0 * * * * echo 'rest a while, please.' > /dev/pts/1
如果每小时想放一段mp3音乐的话,可以这样做,安装mpalyer播放器,还要找到一个音乐文件,比如 music. mp3,
然后使用命令crontab -e,加入如下几行代码:
#min hour day month week command
#play a song
0 * * * * mplayer ~/music.mp3 &> /dev/null
阅读(1205) | 评论(0) | 转发(0) |