mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-19 13:46:17 +10:00
12 lines
353 B
Bash
Executable File
12 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
logfile=$1
|
|
|
|
dbus-monitor "interface='org.freedesktop.Notifications'" |\
|
|
grep --line-buffered "string" |\
|
|
grep --line-buffered -e method -e ":" -e '""' -e urgency -e notify -v |\
|
|
grep --line-buffered '.*(?=string)|(?<=string).*' -oPi |\
|
|
grep --line-buffered -v '^\s*$' |\
|
|
xargs -I '{}' \
|
|
printf "---$( date )---\n"{}"\n" >> $logfile
|