Chinaunix首页 | 论坛 | 博客
  • 博客访问: 623585
  • 博文数量: 138
  • 博客积分: 3067
  • 博客等级: 中校
  • 技术积分: 1565
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-21 12:44
文章分类

全部博文(138)

文章存档

2016年(5)

2014年(4)

2012年(1)

2011年(2)

2010年(10)

2009年(19)

2008年(97)

我的朋友

分类:

2009-03-06 13:08:51

定时 提醒 休息 脚本 

./break.sh 30 2>1 1>/dev/null &


#!/bin/bash
# Usage: ./break.sh  mins  2>1 1>/dev/null
function time_stop
{
n=1
while ((n<60))
do
        sleep ${min}
        ((n+=1))
done
}
min=$1
while true
do
    time_stop
    info="$USERNAME\n ${min} minutes have past\nYou need to take a break!"
    note="info"
    Xdialog --title $note --beep --msgbox "${info}" 10 30
    Xdialog --title $note --beep --inputbox "Take a break[y/n]?" 10 30 2>tmp$$
    input=`cat "tmp$$"|sed -n '$p'`
    case ${input} in
        e)    break;;
            y) continue;;
     n) gnome-screensaver-command -l; continue;;
     *) Xdialog --title $note --no-buttons --infobox "invalidate input!" 4 20;continue;;
        esac
done
rm tmp$$

阅读(900) | 评论(0) | 转发(0) |
0

上一篇:makefile function

下一篇:shell 中 生成 随机数

给主人留下些什么吧!~~