Skip to content

TomiBelan/mute-on-focus-lost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Mute on focus lost

This script can automatically mute playing audio for an application when it loses focus, and unmute it when it regains focus. The feature is sometimes also known as "mute in background", "mute when inactive", "mute on minimize", or "mute on Alt+Tab".

For example, this is useful for games if you need to Alt+Tab out of the game and watch a video, but the game sounds keep playing. Some games have a built in "mute on focus lost" option, but this script should work for apps and games that don't.

Press Win+F1 to mute/unmute the active app right now.

Press Win+F2 to enable "mute on focus lost" mode for the active app. A short beep will let you know it worked. In this mode, the app will mute when you minimize it or switch to another window, and unmute when you switch back. Pressing the key again will disable "mute on focus lost" mode for this app and play a lower beep.

How to install it

Step 1: Download AutoHotkey. You will see two buttons. First, click "Download v2.0" and install it. Second, click "Download v1.1 (deprecated)" and install it.

Notes about AutoHotkey
  • This script only needs AutoHotkey v2, but most other scripts usually need v1, so it's safest to get both.
  • I prefer to install v2 first, but either way should work.
  • Personally, I like to install Windows software with Chocolatey, but at the moment their autohotkey.install package is still v1.

Step 2: Download this script. Find the "Code" button on top of this GitHub page and choose "Download ZIP". Extract the zip file somewhere. (Or if you prefer, you can clone it with Git.)

Step 3: Double click the mute_on_focus_lost.ahk file. It should show a system tray icon.

Step 4: (optional) To run the script automatically after reboot, create a shortcut in the "Startup" folder. Open the "Startup" folder by pressing Win+R and typing shell:startup. Holding the Alt key, drag and drop the .ahk file to the "Startup" window. (It should say "Create link in Startup" while dragging.)

Settings

If you want, you can change some settings by opening mute_on_focus_lost.ahk in Notepad.

After you save the file, run it again to load the new version.

  • If you want to change the key bindings, just replace #F1:: or #F2:: with another key shortcut. See the AutoHotkey documentation for modifier symbols (# means Win) and the list of keys.

  • The list of apps in "mute on focus lost" mode is not remembered permanently. It resets when the script restarts. If you want some programs to be in "mute on focus lost" mode by default, add lines like this. You can give the full .exe path or just the filename. You can still toggle it with Win+F2.

    MOFL_Apps["C:\Program Files (x86)\Steam\steamapps\common\Some Example Game\somegame.exe"] := true
  • There are custom commands in the script's system tray menu to show internal debugging information. If you want, you can assign key shortcuts for those commands by adding these lines.

    #F3:: MOFL_Report()
    
    #F4:: MOFL_ToggleLog()

Credits

Thanks!

Similar software

About

Mute app on focus lost (AutoHotkey script)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published