惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
I
InfoQ
H
Help Net Security
GbyAI
GbyAI
博客园 - 叶小钗
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
Y
Y Combinator Blog
L
LangChain Blog
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
博客园 - Franky
D
Docker
Jina AI
Jina AI
罗磊的独立博客

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - syslog-notify
2026-06-12 · via AUR Newest Packages

Latest Comments

freedomsha commented on 2018-02-06 23:40 (UTC) (edited on 2018-02-06 23:52 (UTC) by freedomsha)

Contributor: Filipp "Scorp" Andjelo scorp@mailueberfall.de

pkgname=syslog-notify pkgver=0.2 pkgrel=2 pkgdesc="Pop-up display for system log messages" arch=('i686' 'x86_64') url="http://jtniehof.github.com/syslog-notify" license=('GPL') depends=('libnotify') install=${pkgname}.install source=(http://github.com/downloads/jtniehof/syslog-notify/${pkgname}-${pkgver}.tar.bz2)

${pkgname}.patch)

md5sums=(#'18474e11ceb0add6e8b70fe7680f0abf' #'3dc49b913d4ee1a00426fb993770084d' 'd8cdacb9296d45a558a135cc9d14660f')

build() { cd ${srcdir}/${pkgname}-${pkgver}

patch -p1 -i ${srcdir}/${pkgname}.patch

./configure --prefix=/usr make }

package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }

=== To use syslog-notify you must redirect syslog output to the pipe '/var/spool/syslog-notify'

Example for syslog-ng (add to /etc/syslog-ng.conf): destination d_syslog_notify { pipe("/var/spool/syslog-notify"); }; log { source(src); destination(d_syslog_notify); };

Consult the manual of the syslog daemon used on your system for accordant information

filand commented on 2011-03-31 20:18 (UTC)

Thank you for your contribution! I've uploaded the fixed version now.

khampf commented on 2011-03-31 13:39 (UTC)

Fix for compilation error (shared upstream): too many arguments to function ‘notify_notification_new’ syslog-notify.patch http://pastebin.com/Pe3xXtah PKGBUILD: http://pastebin.com/1x4KZepW

khampf commented on 2011-03-04 12:46 (UTC)

# snippet for syslog-ng.conf # make a pipe for syslog-notify that can be used by members of the group "wheel" destination d_syslog_notify { pipe("/var/spool/syslog-notify" group("wheel") perm(0660)); }; log { source(src); destination(d_syslog_notify); };