BugBuster1701 / docs

BugBuster Playground for Manuals, Cookbooks
Other
0 stars 0 forks source link

Notify Nachrichten am Host anzeigen lassen #1

Closed BugBuster1701 closed 9 years ago

BugBuster1701 commented 9 years ago

statt

system "notify-send '#{title}' '#{msg}' -i #{images_dir}/#{img} -t #{show_time}"

nun

meldung = "notify-send '#{title}' '#{msg}' -i #{images_dir}/#{img} -t #{show_time}"
system "ssh nutzer@host '#{meldung}' "

Geht das?

BugBuster1701 commented 9 years ago

Nein, aber das geht:

ssh -X nutzer@host 'DISPLAY=:0 notify-send "TEST MESSAGE."'