summaryrefslogtreecommitdiff
path: root/modules/user/aesthetics/targets/foot.nix
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
committertriethyl <triethylammonium@pm.me>2025-09-02 10:48:21 -0400
commit31c316d19cd974bb81a5d6de62142ff24db1c78e (patch)
treecb941422c76cb8953830a8d58c8e14dca1a10319 /modules/user/aesthetics/targets/foot.nix
parent1c21018347aa277caba74e554cb8d1b1e7fc6bed (diff)
reorganized directory structure
Diffstat (limited to 'modules/user/aesthetics/targets/foot.nix')
-rw-r--r--modules/user/aesthetics/targets/foot.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/modules/user/aesthetics/targets/foot.nix b/modules/user/aesthetics/targets/foot.nix
deleted file mode 100644
index c6c2283..0000000
--- a/modules/user/aesthetics/targets/foot.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ config, lib, ... }: let
- cfg = config.aesthetics.targets.foot;
- aes = config.aesthetics;
-in {
- options.aesthetics.targets.foot.enable = lib.mkOption {
- type = lib.types.bool;
- default = (aes.enableAllTargets && aes.hasGui);
- description = "Whether to enable the aesthetics foot target.";
- };
- config = lib.mkIf (cfg.enable && config.programs.foot.enable) {
- programs.foot.settings = {
- main.font = "${aes.font.name}:size=${aes.font.size.small}";
- tweak.font-monospace-warn = false;
- colors = with aes.scheme; {
- background = base00;
- foreground = base05;
-
- # normal
- regular0 = base00;
- regular1 = base08;
- regular2 = base0B;
- regular3 = base0A;
- regular4 = base0D;
- regular5 = base0E;
- regular6 = base0C;
- regular7 = base05;
-
- # bright
- bright0 = base03;
- bright1 = base09;
- bright2 = base01;
- bright3 = base02;
- bright4 = base04;
- bright5 = base06;
- bright6 = base0F;
- bright7 = base07;
-
- # extended
- "16" = base09;
- "17" = base0F;
- "18" = base01;
- "19" = base02;
- "20" = base04;
- "21" = base06;
-
- # misc
- selection-background = base05;
- selection-foreground = base00;
- urls = base04;
- jump-labels = "${base00} ${base0A}";
- scrollback-indicator = "${base00} ${base04}";
- };
- };
- };
-}