├── .gitignore ├── LICENSE ├── README.md ├── example_config.json ├── requirements.txt ├── version.txt └── xborders /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .update_ignore.txt 3 | .idea 4 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deter0/xborder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deter0/xborder/HEAD/README.md -------------------------------------------------------------------------------- /example_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deter0/xborder/HEAD/example_config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycairo==1.21.0 2 | requests==2.28.1 3 | 4 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.4 2 | -------------------------------------------------------------------------------- /xborders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deter0/xborder/HEAD/xborders --------------------------------------------------------------------------------