nix: refactor modules pass 2

This commit is contained in:
Primrose 2025-04-01 21:40:43 +02:00
parent ec7246e524
commit 1716faf2cd
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
19 changed files with 11 additions and 11 deletions

View file

@ -0,0 +1,26 @@
{
programs.xmobar.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% "
}
'';
}