Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
e1484817
Commit
e1484817
authored
Sep 22, 2014
by
Vysheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated test.lua. Libnotify use example
parent
e615891d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
test.lua
test.lua
+27
-0
No files found.
test.lua
View file @
e1484817
...
...
@@ -43,6 +43,32 @@ print ("HI, this is lua script")
function
ok_cb
(
extra
,
success
,
result
)
end
-- Notification code {{{
function
get_title
(
P
,
Q
)
if
(
Q
.
type
==
'user'
)
then
return
P
.
first_name
..
" "
..
P
.
last_name
elseif
(
Q
.
type
==
'chat'
)
then
return
Q
.
title
elseif
(
Q
.
type
==
'encr_chat'
)
then
return
'Secret chat with '
..
P
.
first_name
..
' '
..
P
.
last_name
else
return
''
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
)
if
started
==
0
then
return
...
...
@@ -50,6 +76,7 @@ function on_msg_receive (msg)
if
msg
.
out
then
return
end
do_notify
(
get_title
(
msg
.
from
,
msg
.
to
),
text
)
if
(
msg
.
text
==
'ping'
)
then
if
(
msg
.
to
.
id
==
our_id
)
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment