tungsten: copy config from vanadium

This commit is contained in:
Primrose 2025-04-10 21:51:15 +02:00
parent f41d27ebff
commit b17c3d9251
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
21 changed files with 1568 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
programs.xmobar = {
enable = true;
extraConfig = ''
Config { overrideRedirect = False
, font = "Iosevka 13"
, bgColor = "#000000"
, fgColor = "#FFFFFF"
, position = BottomH 30
, commands = [ Run Date "%a %d %H:%M:%S" "date" 10
, Run Battery
[ "-t", "<acstatus>:<left>%"
, "--"
, "-O", "󰂄"
, "-i", "󱟦"
, "-o", "󰁾"
, "-h", "green"
, "-m", "yell"
, "-l", "red"
] 10
, Run XMonadLog
]
, sepChar = "%"
, alignSep = "}{"
, template = " %XMonadLog% }{ %battery% | %date% "
}
'';
};
}