forked from BestImageViewer/geeqie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.lirc
128 lines (121 loc) · 3.03 KB
/
README.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
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
Linux Infrared Remote Control - use an easy to build home-brewn IR-receiver, an
(almost) arbitrary remote control and control your Linux box with it! More
about it at www.lirc.org. Be sure to read LIRC documentation before going ahead
in this README.
If you have installed the lirc-package, configure will autodetect it. If LIRC
support is enabled and an error occurs Geeqie will tell you on startup. The
application name for Geeqie is geeqie. Here is the list of supported commands:
DOWN [int] - Move "camera" down by the specified amount. Default=1
EXIT - Exit Geeqie
FIRST - Jump to first image
INFO - Show image information (full screen only)
LAST - Jump to last image
LEFT [int] - Move "camera" left by the specified amount. Default=1
NEXT - Go to next image
PAUSE - Pause/unpause slideshow
PREV - Go to previous image
RIGHT [int] - Move "camera" right by the specified amount. Default=1
ROTATE_90 - Rotate image 90 degrees clockwise.
ROTATE_90_CC - Rotate image 90 degrees counter-clockwise.
SET_INV_ZOOM [int] - Zoom to 1/Nx. Deafult=1x
SET_ZOOM [int] - Zoom to Nx. Default=1x
UP [int] - Move "camera" up by the specified amount. Default=1
ZOOM_IN [int] - Zoom in. Value specifies the amount of zoom.
ZOOM_MAX - Zoom to fit image
ZOOM_OUT [int] - Zoom out. Value specifies the amount of zoom.
Don't forget to enable the repeat flag in .lircrc when it make sense
(directional buttons, zoom in and out, ...)
Here's an excerpt from my .lircrc:
begin geeqie
begin
prog = geeqie
button = vol_up
config = ZOOM_IN 1
repeat = 3
end
begin
prog = geeqie
button = vol_down
config = ZOOM_OUT 1
repeat = 3
end
begin
prog = geeqie
button = down
config = DOWN 10
repeat = 1
end
begin
prog = geeqie
button = up
config = UP 10
repeat = 1
end
begin
prog = geeqie
button = right
config = RIGHT 10
repeat = 1
end
begin
prog = geeqie
button = left
config = LEFT 10
repeat = 1
end
begin
prog = geeqie
button = back
config = PREV
end
begin
prog = geeqie
button = forw
config = NEXT
end
begin
prog = geeqie
button = skip_back
config = FIRST
end
begin
prog = geeqie
button = skip_forw
config = LAST
end
begin
prog = geeqie
button = pause
config = PAUSE
end
begin
prog = geeqie
button = surround
config = SET_ZOOM
end
begin
prog = geeqie
button = 1
config = ROTATE_90
end
begin
prog = geeqie
button = 2
config = ROTATE_90_CC
end
begin
prog = geeqie
button = 3
config = INFO
end
begin
prog = geeqie
button = 4
config = EXIT
end
end geeqie
At the moment Geeqie uses the standard location for the lirc-config file
(~/.lircrc).
LIRC support and documentation by Matteo Beniamino
(This file is 'inspired' by LIRC documentation from mplayer).