From db14ce1eeb36239231027e29a51ef164151e835f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 16 Apr 2021 12:15:09 +0200 Subject: [PATCH] readme: use shell syntax for example comments --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 64698c7..6b3d231 100644 --- a/README.md +++ b/README.md @@ -33,14 +33,14 @@ build/gamescope -- On any X11 or Wayland desktop running Mesa 20.3+, you can set the Steam launch arguments of your game as follows: -``` -// Upscale a 720p game to 1440p with integer scaling +```sh +# Upscale a 720p game to 1440p with integer scaling gamescope -w 1280 -h 720 -W 2560 -H 1440 -n -- %command% -// Limit a vsynced game to 30 FPS: +# Limit a vsynced game to 30 FPS gamescope -r 30 -- %command% -// Run the game at 1080p, but scale output to a fullscreen 3440×1440 pillarboxed ultrawide window +# Run the game at 1080p, but scale output to a fullscreen 3440×1440 pillarboxed ultrawide window gamescope -w 1920 -h 1080 -W 3440 -H 1440 -b -- %command% ```