35 lines
534 B
Nix
35 lines
534 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.twmn = {
|
|
enable = true;
|
|
icons = {
|
|
critical = " ";
|
|
info = " ";
|
|
warning = " ";
|
|
};
|
|
text = {
|
|
color = "2b3339";
|
|
font = {
|
|
family = "Hack Nerd Font";
|
|
size = 11;
|
|
};
|
|
maxLength = 75;
|
|
};
|
|
window = {
|
|
position = "tc";
|
|
alwaysOnTop = true;
|
|
color = "#7fbbb3";
|
|
height = 30;
|
|
animation = {
|
|
easeIn = {
|
|
curve = 25;
|
|
duration = 750;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|
|
|