xmobar - optic and themes

This commit is contained in:
2024-03-09 14:55:28 +01:00
parent 37405d1fd4
commit 7c222fc93b
6 changed files with 55 additions and 47 deletions

View File

@@ -5,58 +5,58 @@ config =
defaultConfig
{ font = "Fira Code 10"
, position = TopH 25
, borderColor = "#f38ba8"
, borderColor = "#11111b"
, border = FullB
, borderWidth = 2
, bgColor = "#eba0ac"
, fgColor = "#b4befe"
, bgColor = "#1e1e2e"
, fgColor = "#f5e0dc"
, commands =
[
Run $ Com "/bin/sh" ["-c", "Status=$(pulseaudio-ctl full-status); Volume=$(cut -d ' ' -f 1 <<<$Status); Mute=$(cut -d ' ' -f 2 <<<$Status); Microphone=$(cut -d ' ' -f 3 <<<$ Status); if [[ $Mute == \"yes\" ]]; then Symbol=\"\xf466\"; elif [[ $Volume -le 50 ]]; then Symbol=\"\xf027\"; elseSymbol=\"\xf028\"; fi; if [[ $Microphone == *\"yes\"* ]]; then MicOut=\"\xf036d\"; else MicOut=\"\xf036c\"; fi; echo \"<fc=#db4d65><fn=1>$Symbol</fn></fc> $Volume% <fc=#db4d65><fn=1>$MicOut</fn></fc>\""] "audio" 100
, Run $ Com "/bin/sh" ["-c", "echo \"<fc=#dbb302><fn=1>\xf00e0</fn></fc> $(xbacklight -get)%\""] "backlight" 100
Run $ Com "/bin/sh" ["-c", "Status=$(pulseaudio-ctl full-status); Volume=$(cut -d ' ' -f 1 <<<$Status); Mute=$(cut -d ' ' -f 2 <<<$Status); Microphone=$(cut -d ' ' -f 3 <<<$Status); SpeakerColor=\"#a6e3a1\"; MicColor=\"#a6e3a1\"; if [[ $Mute == \"yes\" ]]; then Symbol=\"\xf466\"; SpeakerColor=\"#f38ba8\"; elif [[ $Volume -le 50 ]]; then Symbol=\"\xf027\"; elseSymbol=\"\xf028\"; fi; if [[ $Microphone == \"yes\" ]]; then MicOut=\"\xf036d\"; MicColor=\"#f38ba8\"; else MicOut=\"\xf036c\"; fi; echo \"<fc=$SpeakerColor><fn=1>$Symbol</fn></fc> $Volume% <fc=$MicColor><fn=1>$MicOut</fn></fc>\""] "audio" 10
, Run $ Com "/bin/sh" ["-c", "echo \"<fc=#f9e2af><fn=1>\xf00e0</fn></fc> $(xbacklight -get)%\""] "backlight" 10
, Run $ Cpu
[
"--template", "<fc=#a9a1e1><fn=1>\xf085</fn></fc> <total>%"
"--template", "<fc=#b4befe><fn=1>\xf085</fn></fc> <total>%"
, "--Low","3"
, "--High","50"
, "--low","#bbc2cf"
, "--normal","#bbc2cf"
, "--high","#fb4934"
, "--low","#f5e0dc"
, "--normal","#f5e0dc"
, "--high","#f38ba8"
] 50
, Run $ Memory
[
"-t","<fc=#51afef><fn=1>\xF2DB</fn></fc> <usedratio>%"
"-t","<fc=#74c7ec><fn=1>\xF2DB</fn></fc> <usedratio>%"
,"-H","80"
,"-L","10"
,"-l","#bbc2cf"
,"-n","#bbc2cf"
,"-h","#fb4934"
,"-l","#f5e0dc"
,"-n","#f5e0dc"
,"-h","#f38ba8"
] 50
, Run $ Date "<fc=#ECBE7B><fn=1>\xf017</fn></fc> %a %d.%m.%y %H:%M" "date" 300
, Run $ Date "<fc=#fab387><fn=1>\xf017</fn></fc> %a %d.%m.%y %H:%M" "date" 300
, Run $ DynNetwork
[
"-t","<fc=#4db5bd><fn=1>\xf063</fn></fc> <rx> <fc=#c678dd><fn=1>\xf062</fn></fc> <tx>"
"-t","<fc=#74c7ec><fn=1>\xf063</fn></fc> <rx> <fc=#f38ba8><fn=1>\xf062</fn></fc> <tx>"
,"-H","200"
,"-L","10"
,"-h","#bbc2cf"
,"-l","#bbc2cf"
,"-n","#bbc2cf"
,"-h","#f5e0dc"
,"-l","#f5e0dc"
,"-n","#f38ba8"
] 50
, Run $ BatteryP [ "BAT0" ]
[
"--template" , "<fc=#B1DE76><fn=1>\xf240</fn></fc> <acstatus>"
"--template" , "<fc=#a6e3a1><fn=1>\xf240</fn></fc> <acstatus>"
, "--Low" , "10" -- units: %
, "--High" , "80" -- units: %
, "--low" , "#fb4934"
, "--normal" , "#bbc2cf"
, "--high" , "#98be65"
, "--low" , "#f38ba8"
, "--normal" , "#f5e0dc"
, "--high" , "#a6e3a1"
, "--" -- battery specific options
-- discharging status
, "-o" , "<left>% (<timeleft>)"
-- AC "on" status
, "-O" , "<left>% (<fc=#98be65>Charging</fc>)"
, "-O" , "<left>% (<fc=#a6e3a1>Charging</fc>)"
-- charged status
, "-i" , "<fc=#98be65>Charged</fc>"
, "-i" , "<fc=#f9e2af>Charged</fc>"
] 50
, Run XMonadLog
]