input
groupsudo usermod -aG input $USER
# group 'input' needs to be in /etc/group first
grep -E '^input:' /usr/lib/group | sudo tee -a /etc/group
sudo usermod -aG input $USER
# Without sudo/root
sh install.sh # Reboot is needed after this
sh install.sh --restart
### Distributions
* Arch Linux/Manjaro Linux - [gnome-x11-gesture-daemon](https://aur.archlinux.org/packages/gnome-x11-gesture-daemon) Thanks to @[yochananmarqos](https://github.com/yochananmarqos)
```code
yay -S gnome-x11-gesture-daemon
make build-docker && make install
# dnf/rpm based distributions
sudo dnf install libinput-devel
sudo apt install libinput-dev
* Then build and install
make build && make install
### Troubleshooting
- First make sure you've restarted your system after installing.
- Run following command to check if service is running properly (It should be running on X11).
systemctl --user status gesture_improvements_gesture_daemon.service
- Open issue on github, with output of the above command
### Uninstallation
sh ./uninstall.sh
# Contributors
[Swastik Dwivedi](https://github.com/drunckj)
# Thanks
[@Smithay](https://github.com/Smithay) for [rust bindings](https://crates.io/crates/input) for libinput
[FreeDesktop/Dbus Project](https://gitlab.freedesktop.org/dbus/) for [Rust API](https://crates.io/crates/zbus) for D-Bus.