2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
config = (pkgs.formats.ini { }).generate "SwappyConfig" {
|
|
|
|
Default = {
|
2024-11-23 07:44:51 +03:00
|
|
|
custom_color = with config.module.style.color; "rgba(${accentR},${accentG},${accentB},1)";
|
2024-11-04 04:37:29 +03:00
|
|
|
early_exit = true;
|
|
|
|
fill_shape = false;
|
|
|
|
line_size = 4;
|
|
|
|
paint_mode = "arrow";
|
|
|
|
show_panel = false;
|
|
|
|
text_font = config.module.style.font.serif.name;
|
2024-11-23 07:38:44 +03:00
|
|
|
text_size = config.module.style.font.size.popup * 3;
|
2024-11-04 04:37:29 +03:00
|
|
|
};
|
|
|
|
};
|
2024-09-14 04:11:08 +03:00
|
|
|
}
|