From c6cc202ab95e6f199e63d59ea68d4bcb39940945 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Tue, 9 Apr 2024 18:29:39 -0600 Subject: redid bash config and update script, experimenting with doom emacs --- xmobar/xmobar.hs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'xmobar') diff --git a/xmobar/xmobar.hs b/xmobar/xmobar.hs index 1bd7e22..27b9e07 100644 --- a/xmobar/xmobar.hs +++ b/xmobar/xmobar.hs @@ -1,6 +1,6 @@ import Xmobar -green, red, blue, blue2, purple, yellow, orange, lowWhite, white :: String +green, red, blue, blue2, aqua, purple, yellow, orange, lowWhite, white :: String green = "#b8bb26" red = "#fb4934" blue = "#83a598" @@ -8,6 +8,7 @@ blue2 = "#458588" purple = "#d3869b" yellow = "#fabd2f" orange = "#fe8019" +aqua = "#8ec07c" lowWhite = "#a89984" white = "#ebdbb2" @@ -15,16 +16,23 @@ config :: Config config = defaultConfig { overrideRedirect = False - , font = "xft:JetBrains Mono NF:style=medium:size=10" - , bgColor = "#3c3836" + , font = "xft:JetBrains Mono NF Medium-10" + , bgColor = "#282828" , fgColor = "#ebdbb2" - , position = Top + , position = Static { xpos=0, ypos=0, width=2256, height=23 } , commands = [ Run $ Cpu ["--template", "\63521 %" , "-L", "30" , "-H", "70" , "--high", red , "--normal", yellow ] 10 + , Run $ CoreTemp [ "--template" , "\63687 °C" + , "--Low" , "50" -- units: °C + , "--High" , "80" -- units: °C + , "--low" , aqua + , "--normal" , orange + , "--high" , red + ] 20 , Run $ Alsa "default" "Master" [ "--template", "墳 " , "--suffix", "True" @@ -69,7 +77,7 @@ config = ] , sepChar = "%" , alignSep = "}{" - , template = " %XMonadLog% }{%alsa:default:Master%|\62941 %brightness%|%battery%|%dynnetwork%|%cpu%|%memory%%swap%|%date% " + , template = " %XMonadLog% }{%alsa:default:Master%|\62941 %brightness%|%battery%|%dynnetwork%|%cpu%|%coretemp%|%memory%%swap%|%date% " } main :: IO() -- cgit v1.2.3