#!/bin/bash # Copyright (C) 2007 Michael Homer <=mwh> # Released under the terms of the GNU GPL version 3+, with no warranty # of any kind. if [[ $# == 2 ]] then dcop knotify Notify notify notify "$1" "$2" nosound nofile 16 0 1 else dcop knotify Notify notify notify "Notification" "$*" nosound nofile 16 0 1 fi