mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-31 07:03:36 +00:00
27 lines
703 B
Nix
27 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}";
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|