├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── joystickwake ├── joystickwake.desktop └── setup.py /.gitattributes: -------------------------------------------------------------------------------- 1 | debian export-ignore 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/README.rst -------------------------------------------------------------------------------- /joystickwake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/joystickwake -------------------------------------------------------------------------------- /joystickwake.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/joystickwake.desktop -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foresto/joystickwake/HEAD/setup.py --------------------------------------------------------------------------------