mirror of
https://github.com/danth/stylix
synced 2024-11-21 19:53:10 +00:00
i3status-rust: init (#548)
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
This commit is contained in:
parent
53bcceb4e4
commit
d56d759fba
1 changed files with 22 additions and 0 deletions
22
modules/i3status-rust/hm.nix
Normal file
22
modules/i3status-rust/hm.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
colors = config.lib.stylix.colors.withHashtag;
|
||||
in
|
||||
{
|
||||
# Merge this with your bar's theme's overrides with //config.lib.stylix.i3status-rust.bar
|
||||
config.lib.stylix.i3status-rust.bar = with colors; {
|
||||
idle_bg = base00;
|
||||
idle_fg = base05;
|
||||
info_bg = base09;
|
||||
info_fg = base00;
|
||||
good_bg = base01;
|
||||
good_fg = base05;
|
||||
warning_bg = base0A;
|
||||
warning_fg = base00;
|
||||
critical_bg = base08;
|
||||
critical_fg = base00;
|
||||
separator_bg = base00;
|
||||
separator_fg = base05;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue