diff options
author | Soispha <soispha@vhack.eu> | 2024-01-30 08:13:08 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-01-30 08:13:08 +0100 |
commit | 63b23a01ad02ed9aa2e8a853149ce6a1fe2621f2 (patch) | |
tree | 0a52e4c463d2c60ace7749f4db83c07f77f373a7 /hm/soispha/conf | |
parent | chore(version): v1.26.1 (diff) | |
download | nixos-config-63b23a01ad02ed9aa2e8a853149ce6a1fe2621f2.zip |
fix(treewide): Fully remove grades
Diffstat (limited to 'hm/soispha/conf')
-rw-r--r-- | hm/soispha/conf/yambar/config/config.yml | 12 | ||||
-rw-r--r-- | hm/soispha/conf/yambar/config/laptop.yml | 12 | ||||
-rw-r--r-- | hm/soispha/conf/yambar/default.nix | 17 |
3 files changed, 20 insertions, 21 deletions
diff --git a/hm/soispha/conf/yambar/config/config.yml b/hm/soispha/conf/yambar/config/config.yml index 0237014e..3d9f0687 100644 --- a/hm/soispha/conf/yambar/config/config.yml +++ b/hm/soispha/conf/yambar/config/config.yml @@ -168,12 +168,12 @@ bar: ~muted: string: {text: " {volume}% ", deco: *combutil} - - script: # Grade average - path: @grade_average_script@ - content: - string: - text: " {grade} " - deco: *combmem + # - script: # Grade average + # path: @grade_average_script@ + # content: + # string: + # text: " {grade} " + # deco: *combmem #- backlight: # name: intel_backlight diff --git a/hm/soispha/conf/yambar/config/laptop.yml b/hm/soispha/conf/yambar/config/laptop.yml index 720786ed..8de2f508 100644 --- a/hm/soispha/conf/yambar/config/laptop.yml +++ b/hm/soispha/conf/yambar/config/laptop.yml @@ -168,12 +168,12 @@ bar: ~muted: string: {text: " {volume}% ", deco: *combutil} - - script: # Grade average - path: @grade_average_script@ - content: - string: - text: " {grade} " - deco: *combmem + # - script: # Grade average + # path: @grade_average_script@ + # content: + # string: + # text: " {grade} " + # deco: *combmem - backlight: name: @backlight@ diff --git a/hm/soispha/conf/yambar/default.nix b/hm/soispha/conf/yambar/default.nix index 67a77d8f..abc0c85e 100644 --- a/hm/soispha/conf/yambar/default.nix +++ b/hm/soispha/conf/yambar/default.nix @@ -3,7 +3,6 @@ sysLib, system, pkgs, - grades, yambar_cpu, yambar_memory, ... @@ -41,14 +40,14 @@ in { file = ./scripts/sound-volume; }; - grade_average_script = makeScript { - dependencies = - [ - grades.outputs.packages.${system}.default - ] - ++ (builtins.attrValues {inherit (pkgs) coreutils gawk;}); - file = ./scripts/grades-average; - }; + # grade_average_script = makeScript { + # dependencies = + # [ + # grades.outputs.packages.${system}.default + # ] + # ++ (builtins.attrValues {inherit (pkgs) coreutils gawk;}); + # file = ./scripts/grades-average; + # }; cpu_script = yambar_cpu.app.${system}.default.program; |