From 3b2a78935fd6550521f719a10e5b0fceb1ddb350 Mon Sep 17 00:00:00 2001 From: Raymaekers Luca Date: Wed, 15 Feb 2023 16:31:56 +0100 Subject: Not really but, First commit! --- config/X/xmobar/xmobarrc1.hs | 149 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 config/X/xmobar/xmobarrc1.hs (limited to 'config/X/xmobar/xmobarrc1.hs') diff --git a/config/X/xmobar/xmobarrc1.hs b/config/X/xmobar/xmobarrc1.hs new file mode 100644 index 0000000..a187055 --- /dev/null +++ b/config/X/xmobar/xmobarrc1.hs @@ -0,0 +1,149 @@ +Config { font = "xft:Ubuntu Mono:pixelsize=14:style=bold:antialias=true:hinting:=true" + , additionalFonts = [ + "xft:Mononoki Nerd Font Mono:style=bold:pixelsize=24:antialias=true:hinting=true", + "xft:Mononoki Nerd Font Mono:style=bold:pixelsize=24:antialias=false:hinting=true" + ] + , position = TopH 24 + , borderColor = "#2e3440" + , borderWidth = 2 + , border = BottomB + , bgColor = "#2e3440" + , fgColor = "#2aa198" + , lowerOnStart = True + , pickBroadest = False + , persistent = False + , hideOnStart = False + , iconRoot = "/home/aluc/.config/xmobar/icons" + , overrideRedirect = True + , commands = [ Run Cpu [ "-t", "%" + ,"-l", "#2e3440,#58e1ac" + ,"-L", "20" + ,"-n", "#4c566a,#58e1ac" + ,"-h", "#cb4b16,#58e1ac" + ,"-H", "50" + ,"-w", "3" + ] 10 + + , Run Memory ["-t", "%" + ,"-l", "#2e3440,#58e1ac" + ,"-L", "20" + ,"-n", "#4c566a,#58e1ac" + ,"-h", "#cb4b16,#58e1ac" + ,"-H", "50" + ,"-w", "2" + ] 10 + + -- Focused window info + , Run Com "/home/aluc/.config/xmobar/scripts/winfo" ["-n"] "FWname" 3 + , Run Com "/home/aluc/.config/xmobar/scripts/winfo" ["-t"] "FWtitle" 3 + , Run Com "/home/aluc/.config/xmobar/scripts/winfo" ["-i"] "FWicon" 3 + , Run Com "/home/aluc/.config/xmobar/scripts/checkupds" ["-i"] "updates" 3600 + -- , Run ComX "$HOME/bin/cmusP" [] "" "cmus" 1 + , Run Com "uname" ["-r"] "" 36000 + , Run Date "\xf073 %b %_d %Y - %H:%M:%S" "date" 10 + , Run PipeReader "/home/aluc/.config/xmobar/scripts/volume-pipe" "vol" + ] + , sepChar = "%" + , alignSep = "}{" + + + -- COLORS + -- #2aa198 : Blue/green -- fg + -- + -- #d08770 : pinkish brown -- memory + -- #ff00ff : pink/purple -- swap + -- #828be6 : perrywinkle -- FWname + -- #825be6 : purpley -- FWtitle + -- bgColor = "#2e3440" + -- fgColor = "#2aa198" + -- #58e1ac + + , template = " \ + -- Left + + \\ + \\ + \\ + \  %uname% \ + \\ + \\ + \\ + + \\ + \\ + \\ + \ %vol% \ + \\ + \\ + \\ + + \\ + \\ + \\ + \\ + \ dmenu \ + \\ + \\ + \\ + \\ + + + -- Centered + \}\ + \\ + \\ + \\ + \ %FWicon% \ + \\ + \\ + \\ + \\ + \%FWname% \ + \\ + \\ + \\ + \\ + \\ + \%FWtitle%\ + \\ + \\ + \\ + \ \ + \\ + + + -- Right + \{ \ + + \\ + \\ + \\ + \ %updates% \ + \\ + \\ + \\ + + \\ + \\ + \\ + \ %cpu% \ + \\ + \\ + \\ + \%memory% \ + \\ + \\ + \\ + \\ + + \\ + \\ + \\ + \ %date% \ + \\ + \\ + \ " + + } + + -- cgit v1.2.3