forked from AddonScriptorDE/plugin.video.netflixbmc
-
Notifications
You must be signed in to change notification settings - Fork 29
/
netflix.lirc
53 lines (52 loc) · 1 KB
/
netflix.lirc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#### BEGIN CurrentWindow - NETFLIX CONTROLS
begin
prog = irxevent
button = KEY_PAUSE
repeat = 0
config = Key space Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_PLAY
repeat = 0
config = Key space Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_UP
config = Key Up Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_DOWN
config = Key Down Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_LEFT
config = Key Left Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_RIGHT
config = Key Right Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_STOP
repeat = 0
config = Key ctrl-w Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_REWIND
repeat = 0
config = Key shift-left Focus CurrentWindow
end
begin
prog = irxevent
button = KEY_FORWARD
repeat = 0
config = Key shift-right Focus CurrentWindow
end
#### END CurrentWindow - NETFLIX CONTROLS