• Stars
    star
    379
  • Rank 113,004 (Top 3 %)
  • Language
    C++
  • License
    MIT License
  • Created over 7 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple Windows app for minimizing windows to tray icons

Traymond Traymond

A very simple app for minimizing any window to tray as an icon. Runs in the background.

In case it terminates unexpectedly, restart the app and all the icons for minimized windows will come back.

Windows 7 or later required.

NB: Does NOT work with apps from the Microsoft Store (see #3).

A binary is available here.

Installing

No installation required, just run Traymond.exe.

Controls

  • Win key + Shift + Z: Minimize the currently focused window to tray.

  • Double click on an icon: Bring back the corresponding hidden window.

  • Tray icon menu accessible by right-clicking the Traymond tray icon:

    • Restore all windows: Restore all previously hidden windows.

    • Exit: Exit Traymond and restore all previously hidden windows.

Building

Nmake

> nmake

Please read this if there are any troubles.

Microsoft Visual Studio

Import and build using the project files (thanks, Tyler Szabo).

Customizing

Defines at the top of the file control the key and the mod key for sending windows to tray (use virtual key codes from here and mod keys from here):

#define TRAY_KEY VK_Z_KEY
#define MOD_KEY MOD_WIN + MOD_SHIFT

Contributing

See Contributing.