1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
-- |
-- Module: Xmobar.Text.Output
-- Copyright: (c) 2022 Jose Antonio Ortega Ruiz
-- License: BSD3-style (see LICENSE)
--
-- Maintainer: jao@gnu.org
-- Stability: unstable
-- Portability: portable
-- Created: Fri Feb 4, 2022 01:10
--
--
-- Format strings emitted by Commands into output strings
--
------------------------------------------------------------------------------
module Xmobar.Text.Output (initLoop, format) where
import Xmobar.Config.Types ( Config (..)
, TextOutputFormat (..)
, Segment
, Widget (..)
, tColorsString)
import Xmobar.Config.Parse (colorComponents)
import Xmobar.Config.Template (parseString)
import Xmobar.Text.Ansi (withAnsiColor)
import Xmobar.Text.Pango (withPangoMarkup)
import Xmobar.Text.Swaybar (formatSwaybar, prepare)
initLoop :: Config -> IO ()
initLoop conf = case textOutputFormat conf of
Swaybar -> prepare
_ -> return ()
formatWithColor :: Config -> Segment -> String
formatWithColor conf (Text s, info, idx, _) =
case textOutputFormat conf of
Ansi -> withAnsiColor (fg, bg) s
Pango -> withPangoMarkup fg bg fn s
_ -> s
where (fg, bg) = colorComponents conf (tColorsString info)
fonts = additionalFonts conf
fn = if idx < 1 || idx > length fonts
then font conf
else fonts !! (idx - 1)
formatWithColor conf (Hspace n, i, x, y) =
formatWithColor conf (Text $ replicate (fromIntegral n) ' ', i, x, y)
formatWithColor _ _ = ""
format :: Config -> String -> String
format conf s = do
let segments = parseString conf s
case textOutputFormat conf of
Swaybar -> formatSwaybar conf segments
_ -> concatMap (formatWithColor conf) segments
|