File: example.lircrc

package info (click to toggle)
vlc 3.0.22-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 208,324 kB
  • sloc: ansic: 443,399; cpp: 111,127; objc: 36,399; sh: 6,737; makefile: 6,623; javascript: 4,902; xml: 1,611; asm: 1,355; yacc: 644; python: 321; lex: 88; perl: 77; sed: 16
file content (133 lines) | stat: -rw-r--r-- 1,954 bytes parent folder | download | duplicates (13)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# This is an example .lircrc file that shows the different config strings that
# vlc understand. Button names are from an animax remote, and these may change
# with different remotes.

# The current full list of config strings vlc understands is always in vlc's
# src/libvlc.h file. Look for lines like:
# add_key( "key-fullscreen", KEY_FULLSCREEN, FULLSCREEN_KEY_TEXT,
#          FULLSCREEN_KEY_LONGTEXT, VLC_FALSE );
# You will need the first argument of these lines. in this case: key-fullscreen

begin
  prog = vlc
  button = PLAY_UP
  config = key-play
end

begin
  prog = vlc
  button = PAUSE_UP
  config = key-pause
end

# Use this target if you have a combined play/pause button
begin
  prog = vlc
  button = PLAY_UP
  config = key-play-pause
end

begin
  prog = vlc
  button = STOP_UP
  config = key-stop
end

begin
  prog = vlc
  button = POWER_UP
  config = key-quit
end

begin
  prog = vlc
  button = SKIP_FORWARD_UP
  config = key-next
end

begin
  prog = vlc
  button = SKIP_BACKWARD
  config = key-prev
end

begin
  prog = vlc
  button = RED_BUTTON_UP
  config = key-fullscreen
end

begin
  prog = vlc
  button = REWIND_UP
  config = key-slower
end

begin
  prog = vlc
  button = FORWARD_UP
  config = key-faster
end

#Audio controls
begin
  prog = vlc
  button = VOLUME_DOWN_DOWN
  config = key-vol-down
end

begin
  prog = vlc
  button = VOLUME_UP_DOWN
  config = key-vol-up
end

begin
  prog = vlc
  button = SOMEBUTTON
  config = key-audio-track
end

begin
  prog = vlc
  button = MUTE_UP
  config = key-vol-mute
end

#For dvd navigation
begin
  prog = vlc
  button = 4_UP
  config = key-nav-left 
end

begin
  prog = vlc
  button = 5_UP
  config = key-nav-down
end

begin
  prog = vlc
  button = 2_UP
  config = key-nav-up
end

begin
  prog = vlc
  button = 6_UP
  config = key-nav-right
end

begin
  prog = vlc
  button = MENU_UP
  config = key-nav-activate
end

begin
  prog = vlc
  button = 9_UP
  config = key-subtitle-track
end