A simple Windows program to add shortcuts that are criminally missing from Windows. Shortcuts heavily inspired by dwm.
Currently only tested on my machine (Windows 11 23H2), may not (and probably will not) work on other versions due to the undocumented nature of the Virtual Desktop API.
- No admin privileges required!
- Tray icon for easy access
- Shortcuts for lightning fast Virtual Desktop operations.
- Alt+<digit> to switch to desktop <digit>
- Alt+Shift+<digit> to move window in focus to desktop <digit>
- Ctrl+Shift+A to toggle pinning the window across all virtual desktops
- Written in .NET 8.0
- Uses pre-compiled VirtualDesktopAccessor binary for Virtual Desktop operations
- Uses nuke for build automation
- Undocumented Virtual Desktop switching COM API inspired by pyvda
- Has a simple installer
- Adds a shortcut to the Start Menu
- Adds itself to autostart
- Download the latest .msi installer release from the releases page
- Install the software by running the installer
- The software will NOT start automatically after installation (for now), so you can start it from the Start Menu
Too non-verbose and too much of a hassle to write custom logic with DLL interop. I will need more complex functionality to be invoked by the shortcuts in the future, so AHK scripting will not do
Python in painfully slow (~1s to switch desktop), especially with AHK. Also, distribution and environment setup is a nightmare in Python.
There's great support for COM and dll interop in .NET, and just by rewriting some of the pyvda code in C# I was able to achieve a significant speedup in all operations.
- Plugin support for custom shortcut loading
- Support for other Windows versions