A C# tool to yeet your windows. In other words, a thingy to hide your windows, minimize them to tray.
- Download the latest release build.
- Extract and run
Tray Yeeter.exe
. - A notification should pop up, indicates that the process has started successfully.
Note
To see all available keys, go to akeys.txt.
- Hotkeys can't assign to critical hotkeys (Example:
ctrl + alt + del
,alt + f4
,win + e
,...) - All keys are from virutal key codes.
- To edit a hotkey, open
config.json
in the same folder withTray Yeeter.exe
. It look something like this:
{
"yeet": [ "F1" ],
"unyeet": [ "F2" ],
"yeet_all": [ "F11" ],
"unyeet_all": [ "F12" ]
}
- Now, let's change yeet hotkey to
ctrl + 1
:- Specify what Ctrl key do you want. In this example, I'll choose Left Ctrl.
1
is a key. But we need to specify where is that1
key. I'll choose the number 1 key (not numpad).
- Apply it to our config:
{
"yeet": [ "LeftControl", "Number1" ],
"unyeet": [ "F2" ],
"yeet_all": [ "F11" ],
"unyeet_all": [ "F12" ]
}
- Create a shortcut to
Tray Yeeter.exe
we've extracted earlier. - Press
win + R
, then entershell:startup
, this should opensStartup
folder. - Put the shortcut to
Startup
folder.
Clone the project.