├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── config.yml ├── .gitignore ├── Makefile ├── README.md ├── internal ├── internal-test ├── libinput-dummy ├── libinput-gestures ├── libinput-gestures-setup ├── libinput-gestures.conf ├── libinput-gestures.desktop ├── libinput-gestures.service ├── libinput-gestures.svg ├── list-version-hashes └── pyproject.toml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | README.html 4 | *.pyc 5 | __pycache__ 6 | *~ 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/README.md -------------------------------------------------------------------------------- /internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/internal -------------------------------------------------------------------------------- /internal-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/internal-test -------------------------------------------------------------------------------- /libinput-dummy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-dummy -------------------------------------------------------------------------------- /libinput-gestures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures -------------------------------------------------------------------------------- /libinput-gestures-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures-setup -------------------------------------------------------------------------------- /libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures.conf -------------------------------------------------------------------------------- /libinput-gestures.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures.desktop -------------------------------------------------------------------------------- /libinput-gestures.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures.service -------------------------------------------------------------------------------- /libinput-gestures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/libinput-gestures.svg -------------------------------------------------------------------------------- /list-version-hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/list-version-hashes -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bulletmark/libinput-gestures/HEAD/pyproject.toml --------------------------------------------------------------------------------