#!/bin/sh

# usage:
# dbus-send-notification "foo bar"

run-standalone.sh dbus-send --print-reply  \
 --type=method_call --dest=org.freedesktop.Notifications  \
 /org/freedesktop/Notifications org.freedesktop.Notifications.SystemNoteDialog  \
 string:"$1" uint32:0 string:'NAO OK!'

