diff options
author | Patrick Simianer <p@simianer.de> | 2016-09-21 08:12:36 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-09-21 08:12:36 +0200 |
commit | dfa7e2bc24bb9dfb82bb7289ef3b15335d01abd6 (patch) | |
tree | 563614399f45ad66387edfd4e8dfae63867bd9e6 /notification-daemon | |
parent | d7b350ee3795e280f2945f7e926df36d0a682239 (diff) |
notification-daemon: replace notify-send
Diffstat (limited to 'notification-daemon')
-rwxr-xr-x | notification-daemon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/notification-daemon b/notification-daemon index 85c4ffb..8a9ddc0 100755 --- a/notification-daemon +++ b/notification-daemon @@ -2,7 +2,7 @@ while line = STDIN.gets if line.strip != "" - `ratpoison -c "echo #{line.strip.split("\n").map {|i| i.strip }.reject {|i| i==''}.join '\n'}"` + `ratpoison -c "echo #{line.strip.split("\n").map {|i| i.strip }.reject {|i| i==''}.join('\n').gsub(/^notify-send : /, '')}"` end end |