sh ArchLinux的提醒的VirtualBox里面的qq消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh ArchLinux的提醒的VirtualBox里面的qq消息相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#qq来消息时播放的声音
file=/win/software/Vdownloads/TencentFiles/msg.wav
#设置提醒时间间隔为36秒,防止qq在一次消息内多次访问声音文件
start=`date +%s`
stop=`expr $start + 36`
inotifywait -mq -e access $file | while read event
do
    now=`date +%s`
        
    if [ $now -gt $stop ]
    then    
        notify-send '主银' '你有消息来喽~~'
        stop=`expr $now + 36`
    fi
done

以上是关于sh ArchLinux的提醒的VirtualBox里面的qq消息的主要内容,如果未能解决你的问题,请参考以下文章

sh Virtualbox archlinux笔记

sh Archlinux VM自动安装脚本。

sh http://csicar.github.io/archlinux/thinkpad/2016/04/16/archlinux-touchpad-disable.html

sh 在archlinux下安装debian软件包

sh 在我的Raspberry 2/3上设置ArchLinux ARM

ArchLinux下Shell基础学习