|
6 | 6 | * Installation & Uninstallation
|
7 | 7 | ** Preparation & Configuration
|
8 | 8 | + Clone this repository, copy =driver/config.sample.h= to =/driver/config.h= and edit it in your favorite text editor. Change the defines at the top of config.h to match your desired acceleration settings.
|
9 |
| - + Make sure, you have the required toolchains (e.g. =base-devel= on Arch or =build-essentials= on Debian) installed as well as the =linux-headers= for your installed kernel. |
| 9 | + + Make sure, you have the required toolchains (e.g. =base-devel= on Arch or =build-essentials= on Debian) installed as well as the =linux-headers= for your installed kernel. |
10 | 10 | ** Arch/Manjaro
|
11 | 11 | Since the maintainer of =LEETMOUSE= is an Arch and Manjaro user, a =PKGBUILD= has been written for seamless integration into pacman.
|
| 12 | + |
12 | 13 | *Installation*
|
13 | 14 | #+begin_src sh
|
| 15 | + # Create the PKGBUILD, copy associated files and run makepkg |
14 | 16 | ./scripts/build_arch.sh
|
15 |
| - cd pkg/build |
16 |
| - makepkg -f |
17 |
| - sudo pacman -U leetmouse*.zst |
| 17 | + # Run pacman on the created package |
| 18 | + sudo pacman -U pkg/build/leetmouse*.zst |
18 | 19 | #+end_src
|
| 20 | + All your mice should now be bound to this driver. They will also automatically bind to it after a reboot. If this did not work, run =sudo /usr/lib/udev/leetmouse_manage bind_all= |
19 | 21 |
|
20 | 22 | *Uninstallation*
|
21 | 23 | #+begin_src sh
|
22 | 24 | sudo pacman -R leetmouse-driver-dkms
|
23 | 25 | #+end_src
|
| 26 | + All your mice should now be bound to the generic usbhid driver again. |
| 27 | + |
24 | 28 | ** Other distros
|
25 |
| - Other distributions' package-managers are not yet supported and thus need a manual installation. |
26 |
| - The installation is not yet very polished but eventually will become soon. |
| 29 | + Other distributions' package-managers are not yet supported and thus need a manual installation. However Debian based systems are planned. |
| 30 | + The installation is not yet very polished but eventually will become so. |
27 | 31 |
|
28 | 32 | *Installation*
|
29 | 33 |
|
30 | 34 | Determine the current version of this module by examining the variable =DKMS_VER= in the =Makefile=. It can be e.g. 0.9.0
|
31 | 35 | Run the following commands to build and install the kernel module
|
32 | 36 | #+begin_src sh
|
| 37 | + # Install the driver and activate the dkms module |
33 | 38 | sudo make setup_dkms && sudo make udev_install
|
34 | 39 | sudo dkms install -m leetmouse-driver -v 0.9.0 # Enter the version you determined from the Makefile earlier in here
|
35 |
| - udevadm control --reload-rules |
36 | 40 | #+end_src
|
37 |
| - Unplug and replug your mouse - Or reboot. From now on, your mouse will automatically bind to this driver. |
38 |
| - |
| 41 | + All your mice should now be bound to this driver. They will also automatically bind to it after a reboot. If this did not work, run =sudo /usr/lib/udev/leetmouse_manage bind_all= |
| 42 | + If this still does not work, there is a major problem |
| 43 | + |
39 | 44 | *Uninstallation*
|
40 | 45 |
|
41 |
| - Your again need to know then =version= as described above for the installation |
| 46 | + You again need to know then =version= as described above for the installation |
42 | 47 | #+begin_src sh
|
| 48 | + # Unbind all mice from the driver |
| 49 | + sudo /usr/lib/udev/leetmouse_manage unbind_all |
| 50 | + # Uninstall the driver |
43 | 51 | sudo dkms remove -m leetmouse-driver -v 0.9.0
|
44 | 52 | sudo make remove_dkms && sudo make udev_uninstall
|
45 | 53 | #+end_src
|
| 54 | + Unplug and replug your mouse or reboot to have your mice bound back to the generic usbhid. |
46 | 55 | * Manual compile, insmod, bind
|
47 |
| - If you want to compile this module only for testing purposes or development, you do not need to install the whole package to your system |
| 56 | + If you want to compile this module only for testing purposes or development, you do not need to install the whole package to your system |
48 | 57 |
|
49 |
| - Compile the module, remove previously loaded modules and insert it. |
50 |
| - #+begin_src sh |
51 |
| - make clean && make |
52 |
| - sudo rmmod leetmouse |
53 |
| - sudo insmod ./driver/leetmouse.ko |
54 |
| - #+end_src |
55 |
| - If you did not install the udev rules before via =make udev_install= you need to manually bind your mouse to this driver. |
56 |
| - You can take a look at =/scripts/bind.sh= for an example on how to determine your mouse's USB address for that |
| 58 | + Compile the module, remove previously loaded modules and insert it. |
| 59 | + #+begin_src sh |
| 60 | + make clean && make |
| 61 | + sudo rmmod leetmouse |
| 62 | + sudo insmod ./driver/leetmouse.ko |
| 63 | + #+end_src |
| 64 | + If you did not install the udev rules before via =sudo make udev_install= you need to manually bind your mouse to this driver. |
| 65 | + You can take a look at =/scripts/bind.sh= for an example on how to determine your mouse's USB address for that. However using the udev rules for development is advised. |
57 | 66 |
|
58 | 67 | * TODOS
|
59 |
| - | External interface for dynamically pushing acceleration parameters | Next priority | |
60 | 68 | | Fixing the only [[https://github.com/systemofapwne/mousedriver/issues/2][vertical srolling bug]] | Next priority |
|
| 69 | + | External interface for dynamically pushing acceleration parameters | Next priority | |
61 | 70 | | GUI to configure the parameters | Next next priority |
|
62 | 71 | | Feature parity with Povohats driver and later even RawAccel | Next next next priority |
|
63 | 72 | | Easier installation & binding | Done |
|
64 | 73 | | DKMS support | Done |
|
65 | 74 | | PKGBUILD for Arch based systems | Done |
|
66 | 75 | | AUR package release | TBD |
|
67 |
| - | Debian (based systems) package | TBD | |
| 76 | + | dpkg package for Debian based systems | TBD | |
68 | 77 |
|
0 commit comments