diff --git a/eww-bar/.config/eww-bar/eww.scss b/eww-bar/.config/eww-bar/eww.scss index e8ff173..5294976 100644 --- a/eww-bar/.config/eww-bar/eww.scss +++ b/eww-bar/.config/eww-bar/eww.scss @@ -72,6 +72,10 @@ window { background-color: #1d2021; padding: 5px 2px; } +.metric-icon { + font-family: "FontAwesome5Free"; + font-size: 0.7em; +} .time { padding-top: 7px; diff --git a/eww-bar/.config/eww-bar/eww.yuck b/eww-bar/.config/eww-bar/eww.yuck index f5152ec..c5338fa 100644 --- a/eww-bar/.config/eww-bar/eww.yuck +++ b/eww-bar/.config/eww-bar/eww.yuck @@ -35,9 +35,11 @@ (box :class "metric" :orientation "v" (large-sym :sym "" ) "${round((1 - (EWW_DISK["/"].free / EWW_DISK["/"].total)) * 100, 0)}%") (box :class "metric" :orientation "v" - "" "${round(EWW_RAM, 0)}%") + (label :class "metric-icon":text "") + "${round(EWW_RAM, 0)}%") (box :class "metric" :orientation "v" - "" "${round(EWW_CPU_USAGE.avg, 0)}%") + (label :class "metric-icon":text "") + "${round(EWW_CPU_USAGE.avg, 0)}%") (box :class "metric" (date)))) @@ -62,7 +64,7 @@ (defwidget large-sym [sym] - (label :class "large-symbol" :text sym)) + (label :class "metric-icon large-symbol" :text sym)) (defwidget date [] (box :orientation "v" diff --git a/nvim/.config/nvim/fnl/dots/plugins/treesitter.fnl b/nvim/.config/nvim/fnl/dots/plugins/treesitter.fnl index b7a264f..f3331c3 100644 --- a/nvim/.config/nvim/fnl/dots/plugins/treesitter.fnl +++ b/nvim/.config/nvim/fnl/dots/plugins/treesitter.fnl @@ -7,7 +7,7 @@ (configs.setup {:ensure_installed "all" :highlight {:enable true - :disable ["fennel" "rust"]} + :disable ["fennel" "rust" "haskell"]} :incremental_selection {:enable false :keymaps {:init_selection "gss" diff --git a/xmonad/.xmonad/lib/Config.hs b/xmonad/.xmonad/lib/Config.hs index 4de9bc2..7a1e86d 100644 --- a/xmonad/.xmonad/lib/Config.hs +++ b/xmonad/.xmonad/lib/Config.hs @@ -659,8 +659,7 @@ fullscreenFixEventHook (ClientMessageEvent _ _ _ dpy win typ (_:dats)) = do return $ All True fullscreenFixEventHook _ = return $ All True - - + -- POLYBAR Kram -------------------------------------- {{{