remove references to top/bottom bars and switch to single

This commit is contained in:
frosty 2024-07-29 04:01:09 -04:00
parent 13d671d7fd
commit 70edf56a13
2 changed files with 5 additions and 32 deletions

View file

@ -8,15 +8,14 @@ config =
bgColor = "#121212", bgColor = "#121212",
fgColor = "#cccccc", fgColor = "#cccccc",
position = Top, position = Top,
template = " %XMonadLog% }{ %volume% <fc=#777777>|</fc> %load% <fc=#777777>|</fc> %battery% <fc=#777777>|</fc> <fc=#f7e83b>%date%</fc> ", template = " %XMonadLog% }{ %weather% <fc=#777777>|</fc> %volume% <fc=#777777>|</fc> %load% <fc=#777777>|</fc> %battery% <fc=#777777>|</fc> <fc=#f7e83b>%date%</fc> ",
commands = commands =
[ Run XMonadLog, [ Run XMonadLog,
Run $ Com "monitors" ["battery"] "battery" 1200,
Run $ Com "monitors" ["cpu"] "cpu" 100,
Run $ Com "monitors" ["memory"] "memory" 100,
Run $ Com "monitors" ["load"] "load" 100,
Run $ PipeReader "/tmp/pipe-volume" "volume", Run $ PipeReader "/tmp/pipe-volume" "volume",
Run $ Date "%m/%d/%Y %-I:%M %p" "date" 600 Run $ Com "monitors" ["load"] "load" 100,
Run $ PipeReader "/tmp/pipe-weather" "weather",
Run $ Com "monitors" ["battery"] "battery" 1200,
Run $ Date "%m/%d/%Y %H:%M" "date" 600
] ]
} }

View file

@ -28,29 +28,3 @@ executable xmobar
default-language: GHC2021 default-language: GHC2021
default-extensions: ImportQualifiedPost default-extensions: ImportQualifiedPost
executable xmobar-top
main-is: xmobar-top.hs
ghc-options:
-O2 -Wall -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -rtsopts -threaded -with-rtsopts=-N
build-depends:
, base
, xmobar >=0.48
default-language: GHC2021
default-extensions: ImportQualifiedPost
executable xmobar-bottom
main-is: xmobar-bottom.hs
ghc-options:
-O2 -Wall -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -rtsopts -threaded -with-rtsopts=-N
build-depends:
, base
, xmobar >=0.48
default-language: GHC2021
default-extensions: ImportQualifiedPost