用于 Pidgin 通知的 wmii 配置脚本

发布于 2024-11-05 21:32:30 字数 113 浏览 0 评论 0原文

我是 wmii 的新手。有人可以分享他的配置脚本和一个可以显示来自 Pidgin 通知的漂亮状态栏吗?

I am new to wmii. Could anybody kind enough to share his configuration script with a nice status bar that could display notifications from Pidgin?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温折酒 2024-11-12 21:32:30

好的,我收到了 Pidgin 的通知。
首先,从 Pidgin 站点下载“command-notification”插件,下载

然后配置插件执行 shell 脚本,如下所示:

#!/bin/bash

owins=$(wmiir ls /client | grep -v -e 'sel')
for owin in $owins; do
  wincount=$(wmiir read /client/$owin/props | grep -c -e "Pidgin:Pidgin")
  if [ $wincount != 0 ]; then
    wmiir xwrite /client/$owin/ctl Urgent off
    wmiir xwrite /client/$owin/ctl Urgent on
    wmiir xwrite /event Notice "You have new message!"
  fi
done

OK, I got the notification work for Pidgin.
First, 'command-notification' plugin from Pidgin site, download

Then configure the plugin execute a shell script, like this:

#!/bin/bash

owins=$(wmiir ls /client | grep -v -e 'sel')
for owin in $owins; do
  wincount=$(wmiir read /client/$owin/props | grep -c -e "Pidgin:Pidgin")
  if [ $wincount != 0 ]; then
    wmiir xwrite /client/$owin/ctl Urgent off
    wmiir xwrite /client/$owin/ctl Urgent on
    wmiir xwrite /event Notice "You have new message!"
  fi
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文