2024-05-30 16:54:58 -03:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
2023-01-24 11:42:49 -03:00
|
|
|
let
|
2024-06-05 01:18:48 -03:00
|
|
|
inherit (config.my)
|
2024-05-30 16:54:58 -03:00
|
|
|
key
|
|
|
|
theme
|
|
|
|
accent
|
|
|
|
font
|
|
|
|
;
|
2023-01-24 11:42:49 -03:00
|
|
|
inherit (theme) color;
|
|
|
|
in
|
|
|
|
{
|
2022-10-24 20:31:23 -03:00
|
|
|
# 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}"
|
2022-12-25 23:02:09 -03:00
|
|
|
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
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|