├── .flake8 ├── .github └── ISSUE_TEMPLATE │ └── Bug_report.md ├── .gitignore ├── Makefile ├── README.md ├── internal ├── internal-test ├── libinput-gestures ├── libinput-gestures-setup ├── libinput-gestures.conf ├── libinput-gestures.desktop ├── libinput-gestures.png └── list-version-hashes /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | README.html 4 | *.pyc 5 | __pycache__ 6 | *~ 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/internal -------------------------------------------------------------------------------- /internal-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/internal-test -------------------------------------------------------------------------------- /libinput-gestures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/libinput-gestures -------------------------------------------------------------------------------- /libinput-gestures-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/libinput-gestures-setup -------------------------------------------------------------------------------- /libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/libinput-gestures.conf -------------------------------------------------------------------------------- /libinput-gestures.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/libinput-gestures.desktop -------------------------------------------------------------------------------- /libinput-gestures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/libinput-gestures.png -------------------------------------------------------------------------------- /list-version-hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudnyeshtalekar/libinput-gestures-for-ubuntu/HEAD/list-version-hashes --------------------------------------------------------------------------------