Skip to content
CS2Apps

Launch options + useful binds

Paste-and-play launch + bind reference.

Tick the launch options you want, copy the resulting string into Steam. Below: 10 binds the pros use — jump-throw, run-throw, clear decals, quick-buy AK, mute teammates. Each with a one-click copy.

Launch options

Right-click CS2 in Steam → Properties → Launch Options. Paste this whole string in.

-novid -nojoy +rate 786432 +exec autoexec.cfg

Useful binds

Each bind below is a copy-paste recipe — paste into the dev console (~) or save it in your autoexec.cfg.

  • Jump-throw bind (standing)

    Releases the primed grenade at the apex of your jump. The +alias jumps; the -alias releases both attack buttons so it works for left-click OR right-click primed nades.

    Suggested key: ALT

    Why useful: Smoke / molly lineups assume one. Without it, pixel-perfect throws are luck.

    alias "+jumpthrow" "+jump"
    alias "-jumpthrow" "-jump; -attack; -attack2"
    bind "ALT" "+jumpthrow"
  • Running jump-throw bind

    Holds forward + jump while pressed, then releases the grenade on key-up. For mid-range lineups that need momentum (T-spawn → jungle smoke on Mirage is the canonical example).

    Suggested key: X

    Why useful: Faster execute lineups. The forward momentum carries the grenade further than a standing jumpthrow.

    alias "+runthrow" "+forward; +jump"
    alias "-runthrow" "-forward; -jump; -attack; -attack2"
    bind "X" "+runthrow"
  • Crouch jump-throw bind

    Crouches and jumpthrows in one motion — adds height variation needed for some specific molly + smoke lineups.

    Suggested key: MOUSE5

    Why useful: Niche lineups that depend on a different release height or arc.

    alias "+crouchjumpthrow" "+jump; +duck"
    alias "-crouchjumpthrow" "-duck; -jump; -attack; -attack2"
    bind "MOUSE5" "+crouchjumpthrow"
  • Clear decals (blood / bullet holes)

    Wipes blood and bullet decals — declutters wallbang spots.

    Suggested key: H

    Why useful: After a fight, blood obscures wallbang lineups. One key = clean view.

    bind "H" "r_cleardecals"
  • Toggle weapon hand

    Swap viewmodel between right and left hand using CS2's toggle command.

    Suggested key: H

    Why useful: Some angles favour the off-hand viewmodel for clearing tight corners.

    bind "H" "toggle cl_righthand 0 1"
  • Last grenade (CS2 slot10)

    Switch directly to the last grenade you held — saves grenade-cycle key spam.

    Suggested key: MOUSE4

    Why useful: CS2-specific. slot10 in CS2 = "last equipped grenade", different from CS:GO's slot10.

    bind "MOUSE4" "slot10"
  • Quick-switch (knife → primary speed boost)

    Tap once to whip out the knife (faster movement), tap again to return to your last weapon.

    Suggested key: C

    Why useful: Knife move-speed is 250u/s vs 215u/s for a rifle — fastest way to rotate.

    bind "C" "slot3; lastinv"
  • Mute / unmute teammate voice

    Quick-toggle teammate voice volume — for tilt control. Starts muted; tap again to bring voice back to 1.0.

    Suggested key: V

    Why useful: Pre-emptive mute when a teammate is going off. Tap V to bring them back.

    alias "voice_on" "voice_scale 1; alias voice_toggle voice_off"
    alias "voice_off" "voice_scale 0; alias voice_toggle voice_on"
    alias "voice_toggle" "voice_off"
    bind "V" "voice_toggle"
  • Quick-buy AK + kit

    One-key AK + armor + smoke + flash + HE. T-side default rifle round.

    Suggested key: KP_INS

    Why useful: Saves ~5 seconds per round — buy completes inside freeze-time even when others miss it.

    bind "KP_INS" "buy ak47; buy vesthelm; buy smokegrenade; buy flashbang; buy hegrenade"
  • Quick-buy M4A4 + kit + defuser

    CT-side equivalent. Includes defuse kit for retake rounds.

    Suggested key: KP_END

    Why useful: Default CT full buy. Swap m4a4 → m4a1 if you prefer the silenced model.

    bind "KP_END" "buy m4a4; buy vesthelm; buy defuser; buy smokegrenade; buy flashbang; buy hegrenade"
  • Toggle FPS counter

    Show/hide framerate counter in the top-left corner.

    Suggested key: F10

    Why useful: CS2 removed net_graph — cl_showfps is the modern replacement. Quick FPS check without opening console.

    bind "F10" "toggle cl_showfps 0 1"
  • Mute enemy voice (loopback)

    Toggles whether you hear the opposing team's voice chat after death.

    Suggested key: N

    Why useful: Turn off when you don't want flame; turn on for free post-death intel.

    bind "N" "toggle voice_player_volume_loopback 0 1"