Skip to content

Commit 2d045ce

Browse files
committed
updates
1 parent c108710 commit 2d045ce

File tree

2 files changed

+93
-71
lines changed

2 files changed

+93
-71
lines changed

Diff for: flake.lock

+81-59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: home/modules/wayland/eww/default.nix

+12-12
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
home.packages = [eww.packages.${pkgs.system}.eww];
2020
xdg.configFile = let
21-
colorScheme = config.colors.colorScheme.colors;
21+
# colorScheme = config.colors.colorScheme.colors;
2222
files = builtins.readDir ./config;
2323
splitList = let
2424
splitList = n: list:
@@ -36,7 +36,7 @@
3636
"eww/${name}" = {
3737
source = pkgs.substituteAll ({
3838
src = ./config/${name};
39-
inherit (config.colors) backgroundAlpha;
39+
# inherit (config.colors) backgroundAlpha;
4040
pamixer = lib.getExe pkgs.pamixer;
4141
pactl = "${pkgs.pulseaudio}/bin/pactl";
4242
jaq = lib.getExe pkgs.jaq;
@@ -49,16 +49,16 @@
4949
xargs = "${pkgs.findutils}/bin/xargs";
5050
idleInhibit = "${pkgs.wlroots.examples}/bin/wlroots-idle-inhibit";
5151
# done twice so that it's a string
52-
hyprbinds = builtins.toJSON (builtins.toJSON (splitList 5 (builtins.map (b: {
53-
bind =
54-
if (lib.hasPrefix ", " b.bind)
55-
then (builtins.substring 2 ((builtins.stringLength b.bind) - 2) b.bind)
56-
else b.bind;
57-
keybind = builtins.replaceStrings [", "] [" + "] b.bind;
58-
label = b.comment;
59-
}) (builtins.filter (b: b.comment != null) config.display.binds))));
60-
}
61-
// colorScheme);
52+
# hyprbinds = builtins.toJSON (builtins.toJSON (splitList 5 (builtins.map (b: {
53+
# bind =
54+
# if (lib.hasPrefix ", " b.bind)
55+
# then (builtins.substring 2 ((builtins.stringLength b.bind) - 2) b.bind)
56+
# else b.bind;
57+
# keybind = builtins.replaceStrings [", "] [" + "] b.bind;
58+
# label = b.comment;
59+
# }) (builtins.filter (b: b.comment != null) config.display.binds))));
60+
});
61+
# // colorScheme);
6262
executable = true;
6363
};
6464
})

0 commit comments

Comments
 (0)