CS2 Audio Toggle
CS2 Audio Toggle is a small Windows app that helps Counter-Strike 2 players create a quick audio-output toggle config. Instead of digging through Windows device IDs or copying long commands by hand, the app finds your available audio endpoints, lets you select the two you want, and generates a ready-to-use CS2 .cfg file.

What It Does
The app scans your Windows audio output devices and shows their CS2-compatible output IDs. You select two devices in order, choose a keybind, and the app builds a CS2 alias script that toggles between those outputs.
This is useful if you want a one-key audio swap setup, for example:
- First click: the fake, muted, or alternate output.
- Second click: the real output where your audio should play.
The app then creates audio_toggle.cfg on your Desktop.
How To Use
- Open the app.
- Select the fake/silent device first.
- Select the real audio output second.
- Click the keybind field and press the key you want to use.
- Click
Save .cfg. - Move
audio_toggle.cfgfrom your Desktop to:
common\Counter-Strike Global Offensive\game\csgo\cfg
- Launch CS2 and run:
exec audio_toggle
After that, pressing your chosen key will toggle between the two selected audio outputs.
Generated Config
The app generates commands like this:
unbind "i";
alias "audio_fake" "sound_device_override {fake_output_id}; alias audio_swap audio_real";
alias "audio_real" "sound_device_override {real_output_id}; alias audio_swap audio_fake";
alias "audio_swap" "audio_fake";
bind "i" "audio_swap";
The output IDs are pulled from Windows and normalized for CS2. The saved config uses audio_fake for the first selected output and audio_real for the second selected output.
Notes
This app is for Windows and Counter-Strike 2. It does not change your Windows audio settings directly, and it does not install anything into your CS2 folder automatically. It only creates the config file on your Desktop so you can review and move it yourself.
If Windows SmartScreen appears, that is expected for new unsigned tools. Only download the app from FPSHEAVEN links you trust.
Download
Download the latest CS2 Audio Toggle build, run the .exe, generate your config, and move it into your CS2 cfg folder.
