我说得对吗?paplay 不会在 genmon(通用监视器)脚本中播放声音?如何在genmon脚本中生成声音?
我在我的stretch debian xfce中为genmon插件准备了一个脚本
#!/bin/bash
wget -q --spider http://google.com
if [ $? -eq 0 ]; then
if [ -e "~./mem" ] ;then
if grep -q pii "~/mem"; then
echo "ok">~/mem
paplay ~/Dropbox/system/ok.ogg
fi
else
echo "pii">~/mem
fi
echo ""
else
if [ -e "~./mem" ]; then
if grep -q ok "~/mem"; then
echo "pii">~/mem
paplay ~/Dropbox/system/pii.ogg
fi
else
echo "ok">~/mem
fi
echo "Offline"
fi
这是关于互联网离线模式的信号。我在 genmon 中添加了这样一行:
bash -c '~/Dropbox/system/./signal'
它起作用了,但声音不起作用。
当我在终端中执行该行时,会播放声音。那么如何让genmon脚本中播放声音呢?