Skip to main content

Untar latest source (version I modified) in /usr/src/mremote.

Run the following:
cd /usr/src/mremote
make
make install
cp mrlauncher /usr/local/bin
cp mouseremote /etc/init.d/
chkconfig mouseremote on
service mouseremote start

Add the following to /etc/X11/xorg.conf:
(note the AutoAddDevices option allows it to use the mouse/keyboard section below)

Section "ServerLayout"
    Identifier     "Layout0"
    #Screen      0  "Screen0" 0 0
    #Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "AutoAddDevices" "off"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/mumse"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "XkbLayout" "us"
    Option         "XkbModel" "pc105"
EndSection

Add the following script to /etc/X11/xinit/xinitrc.d/mrlauncher.sh

#!/bin/sh
/usr/local/bin/mrlauncher &
Category