528
|
1 Linux Infrared Remote Control - use an easy to build home-brewn IR-receiver, an
|
|
2 (almost) arbitrary remote control and control your Linux box with it! More
|
|
3 about it at www.lirc.org. Be sure to read LIRC documentation before going ahead
|
|
4 in this README.
|
|
5
|
|
6 If you have installed the lirc-package, configure will autodetect it. If LIRC
|
|
7 support is enabled and an error occurs Geeqie will tell you on startup. The
|
|
8 application name for Geeqie is geeqie. Here is the list of supported commands:
|
|
9
|
|
10 DOWN [int] - Move "camera" down by the specified amount. Default=1
|
|
11 EXIT - Exit Geeqie
|
|
12 FIRST - Jump to first image
|
|
13 INFO - Show image information (full screen only)
|
|
14 LAST - Jump to last image
|
|
15 LEFT [int] - Move "camera" left by the specified amount. Default=1
|
|
16 NEXT - Go to next image
|
|
17 PAUSE - Pause/unpause slideshow
|
|
18 PREV - Go to previous image
|
|
19 RIGHT [int] - Move "camera" right by the specified amount. Default=1
|
|
20 ROTATE_90 - Rotate image 90 degrees clockwise.
|
|
21 ROTATE_90_CC - Rotate image 90 degrees counter-clockwise.
|
|
22 SET_INV_ZOOM [int] - Zoom to 1/Nx. Deafult=1x
|
|
23 SET_ZOOM [int] - Zoom to Nx. Default=1x
|
|
24 UP [int] - Move "camera" up by the specified amount. Default=1
|
|
25 ZOOM_IN [int] - Zoom in. Value specifies the amount of zoom.
|
|
26 ZOOM_MAX - Zoom to fit image
|
|
27 ZOOM_OUT [int] - Zoom out. Value specifies the amount of zoom.
|
|
28
|
|
29 Don't forget to enable the repeat flag in .lircrc when it make sense
|
|
30 (directional buttons, zoom in and out, ...)
|
|
31 Here's an excerpt from my .lircrc:
|
|
32
|
|
33 begin geeqie
|
|
34 begin
|
|
35 prog = geeqie
|
|
36 button = vol_up
|
|
37 config = ZOOM_IN 1
|
|
38 repeat = 3
|
|
39 end
|
|
40 begin
|
|
41 prog = geeqie
|
|
42 button = vol_down
|
|
43 config = ZOOM_OUT 1
|
|
44 repeat = 3
|
|
45 end
|
|
46 begin
|
|
47 prog = geeqie
|
|
48 button = down
|
|
49 config = DOWN 10
|
|
50 repeat = 1
|
|
51 end
|
|
52 begin
|
|
53 prog = geeqie
|
|
54 button = up
|
|
55 config = UP 10
|
|
56 repeat = 1
|
|
57 end
|
|
58 begin
|
|
59 prog = geeqie
|
|
60 button = right
|
|
61 config = RIGHT 10
|
|
62 repeat = 1
|
|
63 end
|
|
64 begin
|
|
65 prog = geeqie
|
|
66 button = left
|
|
67 config = LEFT 10
|
|
68 repeat = 1
|
|
69 end
|
|
70 begin
|
|
71 prog = geeqie
|
|
72 button = back
|
|
73 config = PREV
|
|
74 end
|
|
75 begin
|
|
76 prog = geeqie
|
|
77 button = forw
|
|
78 config = NEXT
|
|
79 end
|
|
80 begin
|
|
81 prog = geeqie
|
|
82 button = skip_back
|
|
83 config = FIRST
|
|
84 end
|
|
85 begin
|
|
86 prog = geeqie
|
|
87 button = skip_forw
|
|
88 config = LAST
|
|
89 end
|
|
90 begin
|
|
91 prog = geeqie
|
|
92 button = pause
|
|
93 config = PAUSE
|
|
94 end
|
|
95 begin
|
|
96 prog = geeqie
|
|
97 button = surround
|
|
98 config = SET_ZOOM
|
|
99 end
|
|
100 begin
|
|
101 prog = geeqie
|
|
102 button = 1
|
|
103 config = ROTATE_90
|
|
104 end
|
|
105 begin
|
|
106 prog = geeqie
|
|
107 button = 2
|
|
108 config = ROTATE_90_CC
|
|
109 end
|
|
110 begin
|
|
111 prog = geeqie
|
|
112 button = 3
|
|
113 config = INFO
|
|
114 end
|
|
115 begin
|
|
116 prog = geeqie
|
|
117 button = 4
|
|
118 config = EXIT
|
|
119 end
|
|
120 end geeqie
|
|
121
|
|
122 At the moment Geeqie uses the standard location for the lirc-config file
|
|
123 (~/.lircrc).
|
|
124
|
|
125 LIRC support and documentation by Matteo Beniamino
|
|
126 <beniamino@tautologica.org>.
|
|
127
|
|
128 (This file is 'inspired' by LIRC documentation from mplayer).
|