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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
{-# LANGUAGE DeriveGeneric #-}
------------------------------------------------------------------------------
-- |
-- Module: Xmobar.Text.Swaybar
-- 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 03:58
--
--
-- Segment codification using swaybar-protocol JSON strings
--
------------------------------------------------------------------------------
module Xmobar.Text.Swaybar (prepare, formatSwaybar) where
import Data.Aeson
import Data.ByteString.Lazy.UTF8 (toString)
import GHC.Generics
import Xmobar.Config.Types (Config (additionalFonts))
import Xmobar.Run.Parsers ( Segment
, Widget(..)
, Box(..)
, BoxBorder(..)
, FontIndex
, tBoxes
, tColorsString
, colorComponents)
import Xmobar.Text.SwaybarClicks (startHandler)
import Xmobar.Text.Pango (withPangoFont)
data Preamble =
Preamble {version :: !Int, click_events :: Bool} deriving (Eq,Show,Generic)
asString :: ToJSON a => a -> String
asString = toString . encode
preamble :: String
preamble = (asString $ Preamble { version = 1, click_events = True }) ++ "\x0A["
data Block =
Block { full_text :: !String
, name :: !String
, color :: Maybe String
, background :: Maybe String
, separator :: !Bool
, separator_block_width :: !Int
, border :: Maybe String
, border_top :: Maybe Int
, border_bottom :: Maybe Int
, border_left :: Maybe Int
, border_right :: Maybe Int
, markup :: Maybe String
} deriving (Eq,Show,Generic)
defaultBlock :: Block
defaultBlock = Block { full_text = ""
, name = ""
, color = Nothing
, background = Nothing
, separator = False
, separator_block_width = 0
, border = Nothing
, border_top = Nothing
, border_bottom = Nothing
, border_left = Nothing
, border_right = Nothing
, markup = Nothing
}
instance ToJSON Block where
toJSON = genericToJSON defaultOptions
{ omitNothingFields = True }
instance ToJSON Preamble
withBox :: Box -> Block -> Block
withBox (Box b _ n c _) block =
(case b of
BBFull -> bl { border_right = w, border_left = w
, border_bottom = w, border_top = w }
BBTop -> bl { border_top = w }
BBBottom -> bl { border_bottom = w }
BBVBoth -> bl { border_bottom = w, border_top = w }
BBLeft -> bl { border_left = w }
BBRight -> bl { border_right = w }
BBHBoth -> bl { border_right = w, border_left = w }
) { border = bc }
where w = Just (fromIntegral n)
bc = if null c then Nothing else Just c
j0 = Just 0
bl = block { border_right = j0, border_left = j0
, border_bottom = j0, border_top = j0 }
withFont :: Config -> FontIndex -> Block -> Block
withFont conf idx block =
if idx < 1 || idx > length fonts then block
else block { markup = Just $ fonts !! (idx - 1) }
where fonts = additionalFonts conf
withPango :: Block -> Block
withPango block = case markup block of
Nothing -> block
Just fnt -> block { full_text = txt fnt, markup = Just "pango"}
where txt fn = withPangoFont fn (full_text block)
formatSwaybar' :: Config -> Segment -> Block
formatSwaybar' conf (Text txt, info, idx, as) =
foldr withBox (withFont conf idx block) (tBoxes info)
where (fg, bg) = colorComponents conf (tColorsString info)
block = defaultBlock { full_text = txt
, color = Just fg
, background = Just bg
, name = show as
}
formatSwaybar' conf (Hspace n, info, i, a) =
formatSwaybar' conf (Text (replicate (fromIntegral n) ' '), info, i, a)
formatSwaybar' _ _ = defaultBlock
collectBlock :: Block -> [Block] -> [Block]
collectBlock b [] = [b]
collectBlock b (h:bs) =
if b {full_text = ""} == h {full_text = ""} then
h {full_text = full_text b ++ full_text h} : bs
else b:h:bs
collectSegment :: Config -> Segment -> [Block] -> [Block]
collectSegment config segment blocks =
if null $ full_text b then blocks else collectBlock b blocks
where b = formatSwaybar' config segment
formatSwaybar :: Config -> [Segment] -> String
formatSwaybar conf segs = asString (map withPango blocks) ++ ","
where blocks = foldr (collectSegment conf) [] segs
prepare :: IO ()
prepare = startHandler >> putStrLn preamble
|