summaryrefslogtreecommitdiff
path: root/notification-daemon
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-09-21 08:12:36 +0200
committerPatrick Simianer <p@simianer.de>2016-09-21 08:12:36 +0200
commitdfa7e2bc24bb9dfb82bb7289ef3b15335d01abd6 (patch)
tree563614399f45ad66387edfd4e8dfae63867bd9e6 /notification-daemon
parentd7b350ee3795e280f2945f7e926df36d0a682239 (diff)
notification-daemon: replace notify-send
Diffstat (limited to 'notification-daemon')
-rwxr-xr-xnotification-daemon2
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