├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── install.sh ├── nwg-displays.desktop ├── nwg-displays.svg ├── nwg_displays ├── __about__.py ├── __init__.py ├── langs │ ├── cs_CZ.json │ ├── en_US.json │ ├── pl_PL.json │ ├── pt_BR.json │ ├── ru_RU.json │ └── tr_TR.json ├── main.py ├── resources │ ├── main.glade │ └── style.css └── tools.py ├── setup.py └── uninstall.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/flake.nix -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/install.sh -------------------------------------------------------------------------------- /nwg-displays.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg-displays.desktop -------------------------------------------------------------------------------- /nwg-displays.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg-displays.svg -------------------------------------------------------------------------------- /nwg_displays/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/__about__.py -------------------------------------------------------------------------------- /nwg_displays/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nwg_displays/langs/cs_CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/cs_CZ.json -------------------------------------------------------------------------------- /nwg_displays/langs/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/en_US.json -------------------------------------------------------------------------------- /nwg_displays/langs/pl_PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/pl_PL.json -------------------------------------------------------------------------------- /nwg_displays/langs/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/pt_BR.json -------------------------------------------------------------------------------- /nwg_displays/langs/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/ru_RU.json -------------------------------------------------------------------------------- /nwg_displays/langs/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/langs/tr_TR.json -------------------------------------------------------------------------------- /nwg_displays/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/main.py -------------------------------------------------------------------------------- /nwg_displays/resources/main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/resources/main.glade -------------------------------------------------------------------------------- /nwg_displays/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/resources/style.css -------------------------------------------------------------------------------- /nwg_displays/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/nwg_displays/tools.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/setup.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwg-piotr/nwg-displays/HEAD/uninstall.sh --------------------------------------------------------------------------------