mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-14 00:13:26 +00:00
26 lines
703 B
Nix
26 lines
703 B
Nix
{ ... }: {
|
|
programs.yambar = {
|
|
enable = true;
|
|
settings = {
|
|
bar = {
|
|
location = "top";
|
|
height = 26;
|
|
background = "00000066";
|
|
|
|
right = [
|
|
{
|
|
clock = {
|
|
date-format = "%b %d %y";
|
|
time-format = "%I:%M %p";
|
|
content = [
|
|
{
|
|
string.text = "{date} {time}";
|
|
}
|
|
];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|