Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
tdeutils/tdelirc
Michele Calgaro f8eb68b1dd
Replace Q_SIGNALS and Q_SLOTS
il y a 2 mois
..
icons Fix invalid headers in PNG files and optimize for size il y a 8 ans
irkick Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines il y a 3 mois
kcmlirc Replace Q_SIGNALS and Q_SLOTS il y a 2 mois
profiles Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version il y a 6 mois
remotes Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
tdelirc Replaced various '#define' with actual strings - part 5 il y a 4 mois
AUTHORS Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
CMakeL10n.txt Desktop file translations: il y a 4 ans
CMakeLists.txt Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
COPYING Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
ChangeLog Fix incorrectly moved kdelirc files il y a 11 ans
Makefile.am Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
README Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
README.profile-creation Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
README.remote-creation Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans
TODO Rename kdessh -> tdessh and kdelirc -> tdelirc. il y a 11 ans

README

tdelirc
-------

TDELIRC is a TDE frontend for the Linux Infrared Remote Control system. It has
two aims:

1. Provide a control center module for configuration of:
	a) Application bindings to remote control buttons.
	b) Actual remote controls installed (i.e. lirc configuration).

2. Provide a system-tray applet to act as a proxy between the LIRC system and
	TDE (applications), in order to launch DCOP requests (and potentially
	other IPC signals) to applications (and potentially collect/display
	results).

INSTALLATION

Nothing but the normal ./configure && make && su -c "make install".

SETUP

For the TDELirc system to work properly, you *must* have lircd configured and
running. If you have already had a Lirc program running, then you most likely
have Lirc set up properly. If not, be sure that you have a correct kernel module
loaded for your IR receiver (1) and that the lircd program is running (2).

You must also have some remote controls configured in "/etc/lircd.conf". Go to
the lircd website (www.lirc.org) for more information on this.

(1) /sbin/lsmod | grep lirc
If you see some output, you have a lirc kernel module loaded (that's not to say
it's the right module for your hardware).

(2) ps aux | grep -v grep | grep lircd
If you see some output, you have the lircd program running. This is good.

DESIGN

The design of the system is really quite simple---a control center module
modifies a centralised configuration file to determine what action(s) should
be taken on a remote control's button press.

The same(?) module also provides a front-end for the input of /etc/lircd.conf,
necessary to specify remote controls to the LIRC system. An extra (standard
format XML-based) may be provided with the remote control description to give
less sucky (lower case, no spaces/symbols) names.

The /etc/lircd.conf frontend has not yet been implemented, though all other
features are.

The system tray applet interfaces with LIRC in order to catch key presses on
remote controls. It is then able to communicate with and potentially start
applications through DCOP.

Gav Wood, 2003 (gav at kde dot org).