MangoHud
MangoHud copied to clipboard
Font size for custom text with variables
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
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.
try no_small_font
@wilk85, thank you. no_small_font
works fine for me.