├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── TDeskMulti.py ├── icon.ico ├── icon.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/README_EN.md -------------------------------------------------------------------------------- /TDeskMulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/TDeskMulti.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peppelg/TDeskMulti/HEAD/icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.23.0 2 | python-archive==0.2 3 | PySimpleGUI==4.24.0 --------------------------------------------------------------------------------