flightlessmango / MangoHud

A Vulkan and OpenGL overlay for monitoring FPS, temperatures, CPU/GPU load and more. Discord: https://discordapp.com/invite/Gj5YmBb
MIT License
6.37k stars 283 forks source link

Font size for custom text with variables #1013

Open weter11 opened 1 year ago

weter11 commented 1 year ago

Hi. I can't find what option change font size for my options. I'm trying to replace buggy GPU power cons and add GPU voltage with NVMe drive temperature and it looks like this now 2023-05-06_18-51-10 Code:

...
exec=nvidia-smi -q | grep 'Power Draw' | cut -c 45-55
...
custom_text=NVME:
exec=sensors | grep -E -o "Composite.{0,12}" | cut -c 15-22
custom_text=GPU Voltage:
exec=nvidia-smi -q | grep 'Graphics' | cut -c 45-55 | tail -1

Option font_size_text don't have any effect on that text.

wilk85 commented 1 year ago

try no_small_font

almaceleste commented 4 months ago

@wilk85, thank you. no_small_font works fine for me.