From ba8fe8684a7ed57a5fad870e0e5f5d6ca3bbab28 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 27 Aug 2024 21:20:46 +0530 Subject: home/wayland/mango: init --- home/wayland/home.nix | 1 + home/wayland/modules/mango.nix | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 home/wayland/modules/mango.nix diff --git a/home/wayland/home.nix b/home/wayland/home.nix index df9f910..c705f4c 100644 --- a/home/wayland/home.nix +++ b/home/wayland/home.nix @@ -2,6 +2,7 @@ imports = [ ../common/home.nix ./modules/foot.nix + ./modules/mango.nix ./modules/portal.nix ./modules/zathura.nix ./modules/firefox.nix diff --git a/home/wayland/modules/mango.nix b/home/wayland/modules/mango.nix new file mode 100644 index 0000000..31cd7d6 --- /dev/null +++ b/home/wayland/modules/mango.nix @@ -0,0 +1,29 @@ +{ ... }: { + programs.mangohud = { + enable = true; + + settings = { + horizontal = true; + legacy_layout = 0; + hud_no_margin = true; + gpu_stats = true; + gpu_temp = true; + gpu_core_clock = true; + gpu_mem_clock = true; + gpu_power = true; + gpu_name = true; + cpu_stats = true; + cpu_temp = true; + cpu_power = true; + cpu_mhz = true; + vram = true; + vram_color = "ad64c1"; + ram = true; + ram_color = "c26693"; + fps = true; + frame_timing = 1; + frametime_color = "00ff00"; + text_color = "ffffff"; + }; + }; +} -- cgit v1.2.3