blob: 462e6e1e55e793b8e4f5dc4e4f7b0d9c5568ba40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- this is executed when the user invokes it through gesturing
local function foo()
mp.osd_message("Hello World!", 2)
end
-- this is called immediately upon opening a file
local function init()
mp.msg.info("Sleep timer script initialized")
mp.osd_message("Sleep timer script initialized!", 3)
end
mp.add_key_binding(nil, "sleep", foo)
init()
|