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 | |
parent | chore(version): v1.26.1 (diff) | |
download | nixos-config-63b23a01ad02ed9aa2e8a853149ce6a1fe2621f2.zip |
fix(treewide): Fully remove grades
Diffstat (limited to 'hm')
-rw-r--r-- | hm/default.nix | 2 | ||||
-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 |
4 files changed, 20 insertions, 23 deletions
diff --git a/hm/default.nix b/hm/default.nix index 3017f8f2..debff0f5 100644 --- a/hm/default.nix +++ b/hm/default.nix @@ -10,7 +10,6 @@ lf_rename, strip_js_comments, river_init_lesser, - grades, shell_library, # external deps user_js, @@ -37,7 +36,6 @@ lf_rename strip_js_comments river_init_lesser - grades shell_library # external deps 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; |