mirror of
https://github.com/danth/stylix
synced 2024-11-22 20:23:15 +00:00
commit
f93518ec48
1 changed files with 17 additions and 0 deletions
17
modules/bspwm/hm.nix
Normal file
17
modules/bspwm/hm.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, ... }:
|
||||
|
||||
let
|
||||
colors = config.lib.stylix.colors.withHashtag;
|
||||
in {
|
||||
options.stylix.targets.bspwm.enable =
|
||||
config.lib.stylix.mkEnableTarget "bspwm" true;
|
||||
|
||||
config = lib.mkIf config.stylix.targets.bspwm.enable {
|
||||
xsession.windowManager.bspwm.settings = {
|
||||
active_border_color = colors.base08;
|
||||
normal_border_color = colors.base02;
|
||||
focused_border_color = colors.base0F;
|
||||
presel_feedback_color = colors.base08;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue