Уведомления для pacman

Ничего толкового не нашел, может кто использует что нибудь для этого.
In Tux We Trust
Я себе сделал вот так
Можно и проще
маленький скриптик типа
#!/bin/sh
UPD=`checkupdates | wc -l`
if [ $UPD -gt 0 ]; then $UPD | xargs -0 notify-send
fi
exit 0
Будет всплывающее уведомление.
Если требуется, чтоб оно само не пряталось, то добавить notify-send аргумент -t 0
И прописать его в cron с нужной периодичностью
Gnome 2 >> Unity >> KDE 4 >> Openbox >> Awesome >> Xmonad
GitHub , BitBuket
О, похоже то что надо. Если бы еще иконка была, но это уже дело десятое. Спасибо!
In Tux We Trust

 notify-send --help
Usage:
  notify-send [OPTION...] <SUMMARY> [BODY] - create a notification

Help Options:
  -?, --help                        Show help options

Application Options:
  -u, --urgency=LEVEL               Specifies the urgency level (low, normal, critical).
  -t, --expire-time=TIME            Specifies the timeout in milliseconds at which to expire the notification.
  -a, --app-name=APP_NAME           Specifies the app name for the icon
  -i, --icon=ICON[,ICON...]         Specifies an icon filename or stock icon to display.
  -c, --category=TYPE[,TYPE...]     Specifies the notification category.
  -h, --hint=TYPE:NAME:VALUE        Specifies basic extra data to pass. Valid types are int, double, string and byte.
  -v, --version                     Version of the package.
Gnome 2 >> Unity >> KDE 4 >> Openbox >> Awesome >> Xmonad
GitHub , BitBuket
 
Зарегистрироваться или войдите чтобы оставить сообщение.