├── .gitignore ├── Example Pages ├── WintoolsExample1.tpz └── WintoolsExample2.tpz ├── LICENSE ├── README.md ├── Wintools-by-Killler_BOSS.png ├── new_src ├── WinTool.py ├── audioMeter.py ├── entry.tp └── utils │ ├── TextToSpeech.py │ ├── __init__.py │ ├── audioController.py │ ├── audioSwitch.py │ ├── clipboard.py │ ├── magnifier.py │ ├── monitorPrimary.py │ ├── policyconfig.py │ ├── powerplan.py │ ├── rotateDisplay.py │ ├── util.py │ ├── virtualDesktop.py │ ├── winNotification.py │ └── winShutdown.py ├── patchnotes.txt └── src ├── AudioDeviceCmdlets.dll ├── compile.py ├── entry.tp ├── icon.ico ├── icon.png ├── main.py ├── requirements.txt └── utils └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Example Pages/WintoolsExample1.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/Example Pages/WintoolsExample1.tpz -------------------------------------------------------------------------------- /Example Pages/WintoolsExample2.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/Example Pages/WintoolsExample2.tpz -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/README.md -------------------------------------------------------------------------------- /Wintools-by-Killler_BOSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/Wintools-by-Killler_BOSS.png -------------------------------------------------------------------------------- /new_src/WinTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/WinTool.py -------------------------------------------------------------------------------- /new_src/audioMeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/audioMeter.py -------------------------------------------------------------------------------- /new_src/entry.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/entry.tp -------------------------------------------------------------------------------- /new_src/utils/TextToSpeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/TextToSpeech.py -------------------------------------------------------------------------------- /new_src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /new_src/utils/audioController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/audioController.py -------------------------------------------------------------------------------- /new_src/utils/audioSwitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/audioSwitch.py -------------------------------------------------------------------------------- /new_src/utils/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/clipboard.py -------------------------------------------------------------------------------- /new_src/utils/magnifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/magnifier.py -------------------------------------------------------------------------------- /new_src/utils/monitorPrimary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/monitorPrimary.py -------------------------------------------------------------------------------- /new_src/utils/policyconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/policyconfig.py -------------------------------------------------------------------------------- /new_src/utils/powerplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/powerplan.py -------------------------------------------------------------------------------- /new_src/utils/rotateDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/rotateDisplay.py -------------------------------------------------------------------------------- /new_src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/util.py -------------------------------------------------------------------------------- /new_src/utils/virtualDesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/virtualDesktop.py -------------------------------------------------------------------------------- /new_src/utils/winNotification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/winNotification.py -------------------------------------------------------------------------------- /new_src/utils/winShutdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/new_src/utils/winShutdown.py -------------------------------------------------------------------------------- /patchnotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/patchnotes.txt -------------------------------------------------------------------------------- /src/AudioDeviceCmdlets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/AudioDeviceCmdlets.dll -------------------------------------------------------------------------------- /src/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/compile.py -------------------------------------------------------------------------------- /src/entry.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/entry.tp -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/main.py -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/WinTools/HEAD/src/utils/util.py --------------------------------------------------------------------------------