diff --git a/bin/xmobar.hs b/bin/xmobar.hs index 754bd1b..64b1594 100644 --- a/bin/xmobar.hs +++ b/bin/xmobar.hs @@ -48,9 +48,9 @@ main = do config :: BarRegions -> String -> Config config br confDir = defaultConfig { font = barFont - , additionalFonts = [ iconFont, iconFontLarge, blockFont ] + , additionalFonts = [iconFont, iconFontLarge, iconFontXLarge] , textOffset = 16 - , textOffsets = [ 16, 17, 17 ] + , textOffsets = [16, 17, 18] , bgColor = T.bgColor , fgColor = T.fgColor , position = BottomSize C 100 24 @@ -173,13 +173,13 @@ lockCmd = CmdSpec { csAlias = "locks" , csRunnable = Run $ Locks - [ "-N", "\x1f13d" - , "-n", xmobarColor T.backdropFgColor "" "\x1f13d" - , "-C", "\x1f132" - , "-c", xmobarColor T.backdropFgColor "" "\x1f132" + [ "-N", "\xf8a5" + , "-n", xmobarColor T.backdropFgColor "" "\xf8a5" + , "-C", "\xf657" + , "-c", xmobarColor T.backdropFgColor "" "\xf657" , "-s", "" , "-S", "" - , "-d", " " + , "-d", " " ] } @@ -326,21 +326,21 @@ barFont = T.fmtFontXFT T.font iconFont :: String iconFont = T.fmtFontXFT T.font - { T.family = "FontAwesome" + { T.family = "Symbols Nerd Font" , T.size = Nothing , T.pixelsize = Just 13 } iconFontLarge :: String iconFontLarge = T.fmtFontXFT T.font - { T.family = "FontAwesome" + { T.family = "Symbols Nerd Font" , T.size = Nothing , T.pixelsize = Just 15 } -blockFont :: String -blockFont = T.fmtFontXFT T.font - { T.family = "Symbola" - , T.size = Just 13 - , T.weight = Just T.Bold +iconFontXLarge :: String +iconFontXLarge = T.fmtFontXFT T.font + { T.family = "Symbols Nerd Font" + , T.size = Nothing + , T.pixelsize = Just 20 }