mirror of
https://github.com/danth/stylix
synced 2024-11-14 00:17:10 +00:00
7682713f6a
Add a 'stylix.enable' option to enable or disable all Stylix modules in order to resolve issues similar to [2]. To align with the default 'lib.mkEnableOption' [1] behavior, 'stylix.enable' defaults to 'false'. BREAKING CHANGE: Stylix is disabled by default. To enable it, use: stylix.enable = true; [1]: https://github.com/NixOS/nixpkgs/blob/23.11/lib/options.nix#L91-L105 [2]: https://github.com/danth/stylix/issues/216 Co-authored-by: Daniel Thwaites <danthwaites30@btinternet.com> Co-authored-by: Jalil David Salamé Messina <jalil.salame@gmail.com> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
38 lines
1.5 KiB
Nix
38 lines
1.5 KiB
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.zathura.enable =
|
|
config.lib.stylix.mkEnableTarget "Zathura" true;
|
|
|
|
config = lib.mkIf (config.stylix.enable && config.stylix.targets.zathura.enable) {
|
|
programs.zathura.options = let
|
|
highlightTransparency = "0.5";
|
|
getColorCh = colorName: channel: config.lib.stylix.colors."${colorName}-rgb-${channel}";
|
|
rgb = color: ''rgb(${getColorCh color "r"}, ${getColorCh color "g"}, ${getColorCh color "b"})'';
|
|
rgba = color: ''rgba(${getColorCh color "r"}, ${getColorCh color "g"}, ${getColorCh color "b"}, ${highlightTransparency})'';
|
|
in {
|
|
# Taken from here:
|
|
# https://github.com/doenerkebap/base16-zathura
|
|
default-bg = rgb "base00";
|
|
default-fg = rgb "base01";
|
|
statusbar-fg = rgb "base04";
|
|
statusbar-bg = rgb "base02";
|
|
inputbar-bg = rgb "base00";
|
|
inputbar-fg = rgb "base07";
|
|
notification-bg = rgb "base00";
|
|
notification-fg = rgb "base07";
|
|
notification-error-bg = rgb "base00";
|
|
notification-error-fg = rgb "base08";
|
|
notification-warning-bg = rgb "base00";
|
|
notification-warning-fg = rgb "base08";
|
|
highlight-color = rgba "base0A";
|
|
highlight-active-color = rgba "base0D";
|
|
completion-bg = rgb "base01";
|
|
completion-fg = rgb "base0D";
|
|
completion-highlight-fg = rgb "base07";
|
|
completion-highlight-bg = rgb "base0D";
|
|
recolor-lightcolor = rgb "base00";
|
|
recolor-darkcolor = rgb "base06";
|
|
};
|
|
};
|
|
}
|