nixos-config/user/bmenu.nix

25 lines
632 B
Nix
Raw Normal View History

2022-10-24 20:31:23 -03:00
{ config, pkgs, lib, inputs, ... }:
let inherit (pkgs.uservars) key theme color accent font;
2022-10-24 20:31:23 -03:00
in {
# My bemenu wrapper
xdg.configFile = {
"bmenu.conf".text = ''
set fn "${font.mono} ${toString font.size.small}"
set tb "${color.bg}${theme.opacityHex}"
set tf "${accent.color}"
set fb "${color.bg}${theme.opacityHex}"
set ff "${color.txt}"
set nb "${color.bg}${theme.opacityHex}"
set nf "${color.txt}"
set ab "${color.bg}${theme.opacityHex}"
set af "${color.txt}"
2022-10-24 20:31:23 -03:00
set hb "${accent.color}"
set hf "${accent.fg}"
2023-01-21 16:06:23 -03:00
set bdr "${accent.color}"
2022-10-24 20:31:23 -03:00
'';
};
}