diff --git a/README.md b/README.md index aeccf938..38988bb6 100644 --- a/README.md +++ b/README.md @@ -324,6 +324,7 @@ Parameters that are enabled by default have to be explicitly disabled. These (cu | `custom_text` | Display a custom text e.g `custom_text=Fsync enabled` | | `engine_version` | Display OpenGL or vulkan and vulkan-based render engine's version | | `exec` | Display output of bash command in next column, e.g `custom_text=/home` , `exec=df -h /home \| tail -n 1`. Only works with legacy_layout=false | +| `exec_name` | Display current exec name | | `font_file_text` | Change text font. Otherwise `font_file` is used | | `font_file` | Change default font (set location to .TTF/.OTF file ) | | `font_glyph_ranges` | Specify extra font glyph ranges, comma separated: `korean`, `chinese`, `chinese_simplified`, `japanese`, `cyrillic`, `thai`, `vietnamese`, `latin_ext_a`, `latin_ext_b`. If you experience crashes or text is just squares, reduce font size or glyph ranges. | @@ -331,7 +332,7 @@ Parameters that are enabled by default have to be explicitly disabled. These (cu | `font_scale_media_player` | Change size of media player text relative to font_size | | `font_size=` | Customizeable font size (default=24) | | `font_size_text=` | Customizeable font size for other text like media metadata (default=24) | -| `fps_limit_method` | If FPS limiter should wait before or after presenting a frame. Choose `late` (default) for the lowest latency or `early` for the smoothest frametimes. | +| `fps_limit_method` | If FPS limiter should wait before or after presenting a frame. Choose `late` (default) for the lowest latency or `early` for the smoothest frametimes | | `fps_limit` | Limit the apps framerate. Comma-separated list of one or more FPS values. `0` means unlimited. | | `fps_only` | Show FPS only. ***Not meant to be used with other display params*** | | `frame_count` | Display frame count | @@ -347,6 +348,9 @@ Parameters that are enabled by default have to be explicitly disabled. These (cu | `gpu_load_value` | Set the values for medium and high load e.g `gpu_load_value=50,90` | | `gpu_name` | Displays GPU name from pci.ids | | `histogram` | Change FPS graph to histogram | +| `horizontal` | Display Mangohud in a horizontal position | +| `hud_compact` | Display compact version of MangoHud | +| `hud_no_margin` | Remove margins around MangoHud | | `io_read`
`io_write` | Show non-cached IO read/write, in MiB/s | | `log_duration` | Set amount of time the logging will run for (in seconds) | | `log_interval` | Change the default log interval, `100` is default | @@ -360,7 +364,7 @@ Parameters that are enabled by default have to be explicitly disabled. These (cu | `pci_dev` | Select GPU device in multi-gpu setups | | `permit_upload` | Allow uploading of logs to Flightlessmango.com | | `picmip` | Mip-map LoD bias. Negative values will increase texture sharpness (and aliasing). Positive values will increase texture blurriness (-16 to 16) | -| `position=` | Location of the HUD: `top-left` (default), `top-right`, `middle-left`, `middle-right`, `bottom-left`, `bottom-right`, `top-center` | +| `position=` | Location of the HUD: `top-left` (default), `top-right`, `middle-left`, `middle-right`, `bottom-left`, `bottom-right`, `top-center`, `bottom_center` | | `procmem`
`procmem_shared`, `procmem_virt`| Displays process' memory usage: resident, shared and/or virtual. `procmem` (resident) also toggles others off if disabled. | | `ram`
`vram` | Displays system RAM/VRAM usage | | `read_cfg` | Add to MANGOHUD_CONFIG as first parameter to also load config file. Otherwise only MANGOHUD_CONFIG parameters are used. | diff --git a/data/MangoHud.conf b/data/MangoHud.conf index bc9e6205..cd20097f 100644 --- a/data/MangoHud.conf +++ b/data/MangoHud.conf @@ -17,6 +17,22 @@ ### OpenGL VSync [0-N] 0 = off; >=1 = wait for N v-blanks, N > 1 acts as a FPS limiter (FPS = display refresh rate / N) # gl_vsync= +### Mip-map LoD bias. Negative values will increase texture sharpness (and aliasing) +## Positive values will increase texture blurriness (-16 to 16) +# picmip= + +### Anisotropic filtering level. Improves sharpness of textures viewed at an angle (0 to 16) +# af= + +### Force bicubic filtering +# bicubic + +### Force trilinear filtering +# trilinear + +### Disables linear texture filtering. Makes textures look blocky +# retro + ################### VISUAL ################### ### Legacy layout @@ -93,11 +109,16 @@ fps frametime # frame_count +### Display GPU throttling status based on Power, current, temp or "other" +## Only shows if throttling is currently happening +throttling_status + ### Display miscellaneous information # engine_version # gpu_name # vulkan_driver # wine +# exec_name ### Display loaded MangoHud architecture # arch @@ -153,6 +174,15 @@ frame_timing ### Change the corner roundness # round_corners= +### Remove margins around MangoHud +# hud_no_margin + +### Display compact version of MangoHud +# hud_compact + +### Display Mangohud in a horizontal position +# horizontal + ### Disable / hide the hud by default # no_display @@ -222,6 +252,7 @@ frame_timing ### Change toggle keybinds for the hud & logging # toggle_hud=Shift_R+F12 +# toggle_hud_position=Shift_R+F11 # toggle_fps_limit=Shift_L+F1 # toggle_logging=Shift_L+F2 # reload_cfg=Shift_L+F4 @@ -240,4 +271,4 @@ frame_timing # permit_upload=1 ### Define a '+'-separated list of percentiles shown in the benchmark results ### Use "AVG" to get a mean average. Default percentiles are 97+AVG+1+0.1 -# benchmark_percentiles=97,AVG,1,0.1 +# benchmark_percentiles=97,AVG,1,0.1 \ No newline at end of file