Commit 1a112a90 authored by vvaltman's avatar vvaltman

test.lua reverted

parent a3c79800
...@@ -57,6 +57,17 @@ function get_title (P, Q) ...@@ -57,6 +57,17 @@ function get_title (P, Q)
end end
end end
local lgi = require ('lgi')
local notify = lgi.require('Notify')
notify.init ("Telegram updates")
local icon = os.getenv("HOME") .. "/.telegram-cli/telegram-pics/telegram_64.png"
function do_notify (user, msg)
local n = notify.Notification.new(user, msg, icon)
n:show ()
end
-- }}}
function on_msg_receive (msg) function on_msg_receive (msg)
if started == 0 then if started == 0 then
...@@ -65,6 +76,7 @@ function on_msg_receive (msg) ...@@ -65,6 +76,7 @@ function on_msg_receive (msg)
if msg.out then if msg.out then
return return
end end
do_notify (get_title (msg.from, msg.to), msg.text)
if (msg.text == 'ping') then if (msg.text == 'ping') then
if (msg.to.id == our_id) then if (msg.to.id == our_id) then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment