diff options
author | tv <tv@krebsco.de> | 2023-01-11 17:23:21 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-11 17:23:48 +0100 |
commit | 9c4a8aa82bea9407f3ce1b140e20cf8a34c93c30 (patch) | |
tree | 48ea5a783deb0b5f09386c165fa26924e87cfafb | |
parent | 93cba42c36634e83a128cd73f85a4302adb27f5b (diff) |
tv alacritty: add fzmenu profile
-rw-r--r-- | tv/5pkgs/simple/alacritty-tv.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tv/5pkgs/simple/alacritty-tv.nix b/tv/5pkgs/simple/alacritty-tv.nix index bca779df7..447926cfb 100644 --- a/tv/5pkgs/simple/alacritty-tv.nix +++ b/tv/5pkgs/simple/alacritty-tv.nix @@ -55,6 +55,11 @@ let colors.primary.foreground = "#e0c0c0"; colors.normal.black = "#800000"; }; + configs.fzmenu = lib.recursiveUpdate configs.default { + colors.primary.background = "#2A172A"; + window.dimensions.columns = 70; + window.dimensions.lines = 9; + }; writeProfile = name: config: let config-file = assert lib.types.filename.check name; |