Radio Boss Key -
// Global hotkey registration (using e.g., NHotkey) private void OnBossKeyPressed()
/* Fake Work Screen (Boss Mode) */ .fake-work display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #2b5a3b; color: white; font-family: 'Courier New', monospace; padding: 40px; z-index: 9999; text-align: center; radio boss key
Configure RadioBOSS in the settings to minimize directly to the system tray (near the clock) rather than the main taskbar. This keeps your active taskbar clean and hides your broadcasting activities from casual onlookers. // Global hotkey registration (using e
: For those running small Internet radio stations from a shared office or home environment, it provides a "panic button" to hide personal projects instantly. : Minimizes all current windows to the taskbar
: Minimizes all current windows to the taskbar.
// Optional: Prevent accidental F12 / right-click to avoid user revealing the trick document.addEventListener('contextmenu', (e) => e.preventDefault()); document.addEventListener('keydown', (e) => if (e.key === 'F12') e.preventDefault();
Keep the audio running or mute it automatically upon hiding. 3. AutoHotkey Scripting (Advanced Customization)