“Linux定时休息脚本”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
(创建页面,内容为“=定时休息= ==notify-send使用方法== <pre> </pre> ==我的脚本 == <pre> cat ~/apps/eye.sh #!/bin/bash # export DISPLAY=:0.0;notify-send -u normal -t…”)
 
 
(未显示同一用户的3个中间版本)
第1行: 第1行:
 +
[[category:desktop]] [[category:devops]] 
 
=定时休息=
 
=定时休息=
  
第4行: 第5行:
 
<pre>
 
<pre>
  
 +
notify-send 命令用于在桌面上弹出气泡提示,使用了 zenity 命令用于显示图形窗口
  
 +
仅发送通知内容:
 +
 +
notify-send "Notification!
 +
 +
 +
发送带标题通知内容:
 +
 +
notify-send "Title" "Notification!"
 +
 +
 +
发送带标题、带图片的通知内容:
 +
 +
notify-send /home/notification.png "title" "Notification!"
  
 
</pre>
 
</pre>
 +
 +
=R=
 +
 +
[https://blog.csdn.net/qq_35503971/article/details/105031099  【护眼】Ubuntu定时休息]
  
 
==我的脚本 ==
 
==我的脚本 ==
第14行: 第33行:
 
cat ~/apps/eye.sh  
 
cat ~/apps/eye.sh  
 
#!/bin/bash
 
#!/bin/bash
#
+
#50,51  * *  * *  /home/evan/apps/eye.sh
 +
 
 
export DISPLAY=:0.0;notify-send -u normal -t 50000 -i appointment-new '1分钟后锁屏' '注意休息,善待眼睛、善待颈椎'
 
export DISPLAY=:0.0;notify-send -u normal -t 50000 -i appointment-new '1分钟后锁屏' '注意休息,善待眼睛、善待颈椎'
  
  
 
</pre>
 
</pre>

2021年11月16日 (二) 02:49的最新版本

定时休息

notify-send使用方法


notify-send 命令用于在桌面上弹出气泡提示,使用了 zenity 命令用于显示图形窗口

仅发送通知内容:

notify-send "Notification!


发送带标题通知内容:

notify-send "Title" "Notification!"


发送带标题、带图片的通知内容:

notify-send /home/notification.png "title" "Notification!"

R

【护眼】Ubuntu定时休息

我的脚本



cat ~/apps/eye.sh 
#!/bin/bash
#50,51  * *  * *  /home/evan/apps/eye.sh

export DISPLAY=:0.0;notify-send -u normal -t 50000 -i appointment-new '1分钟后锁屏' '注意休息,善待眼睛、善待颈椎'