1
1
Fork 0

mangohud: enable session-wide

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2025-03-15 17:31:05 -05:00
parent 0b8dc8b94c
commit beb65e47ae
Signed by: Myned
GPG key ID: C7224454F7881A34

View file

@ -7,59 +7,60 @@
with lib; let with lib; let
cfg = config.custom.programs.mangohud; cfg = config.custom.programs.mangohud;
in { in {
options.custom.programs.mangohud.enable = mkOption {default = false;}; options.custom.programs.mangohud = {
enable = mkOption {default = false;};
};
config.home-manager.users.${config.custom.username} = mkIf cfg.enable { config = mkIf cfg.enable {
# https://github.com/flightlessmango/MangoHud home-manager.sharedModules = [
programs.mangohud = { {
enable = true; # https://github.com/flightlessmango/MangoHud
programs.mangohud = {
enable = true;
enableSessionWide = true;
# BUG: Some GTK apps use Vulkan, which triggers MangoHUD settings = {
# https://github.com/flightlessmango/MangoHud/issues/1305 background_alpha = 0;
#// enableSessionWide = true; background_color = "002b36";
battery = true;
settings = { battery_watt = true;
background_alpha = 0; core_load = true;
background_color = "002b36"; cpu_color = "268bd2";
battery = true; cpu_temp = true;
battery_watt = true; device_battery = "gamepad,mouse";
core_load = true; dynamic_frame_timing = true;
cpu_color = "268bd2"; engine_color = "dc322f";
cpu_temp = true; font_file = "${pkgs.nerd-fonts.iosevka}/share/fonts/truetype/NerdFonts/Iosevka/IosevkaNerdFontPropo-SemiBold.ttf";
device_battery = "gamepad,mouse"; font_size = 24;
dynamic_frame_timing = true; fps_limit = "100,75,60,50"; # !! Monitor dependent
engine_color = "dc322f"; fps_limit_method = "early"; # Smoother frametimes compared to late
font_file = "${pkgs.nerd-fonts.iosevka}/share/fonts/truetype/NerdFonts/Iosevka/IosevkaNerdFontPropo-SemiBold.ttf"; frametime = true;
font_size = 24; frametime_color = "859900";
fps_limit = "100,75,60,50"; # !! Monitor dependent #// gl_vsync = -1; # Adaptive
fps_limit_method = "early"; # Smoother frametimes compared to late gpu_color = "2aa198";
frametime = true; gpu_load_change = true;
frametime_color = "859900"; gpu_temp = true;
#// gl_vsync = -1; # Adaptive gpu_stats = true;
gpu_color = "2aa198"; hud_compact = true;
gpu_load_change = true; io_color = "b58900";
gpu_temp = true; io_read = true;
gpu_stats = true; io_write = true;
hud_compact = true; no_display = true; # Hide by default
io_color = "b58900"; position = "top-center";
io_read = true; ram = true;
io_write = true; ram_color = "d33682";
no_display = true; # Hide by default reload_cfg = "Control_L+Shift_L+slash";
position = "top-center"; show_fps_limit = true;
ram = true; swap = true;
ram_color = "d33682"; text_color = "fdf6e3";
reload_cfg = "Control_L+Shift_L+slash"; throttling_status_graph = true;
show_fps_limit = true; toggle_fps_limit = "Control_L+period";
swap = true; toggle_hud = "Control_L+slash";
text_color = "fdf6e3"; #// vsync = 0; # Adaptive
throttling_status_graph = true; vram = true;
toggle_fps_limit = "Control_L+period"; vram_color = "6c71c4";
toggle_hud = "Control_L+slash"; };
#// vsync = 0; # Adaptive };
vram = true;
vram_color = "6c71c4";
};
};
# TODO: Use stylix # TODO: Use stylix
# https://stylix.danth.me/options/modules/mangohud.html # https://stylix.danth.me/options/modules/mangohud.html