diff options
author | jao <jao@gnu.org> | 2022-02-04 05:53:48 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-02-06 00:24:10 +0000 |
commit | 6e124f046b5b92dd3cdfc4a4ea337e3aca4c025d (patch) | |
tree | ca2b3dcffe2a4c2529a6bb980266aad8f0c9f504 /src/Xmobar/Config | |
parent | b6ab169dc7c616fed4ba0ecd542471f0157fc084 (diff) | |
download | xmobar-6e124f046b5b92dd3cdfc4a4ea337e3aca4c025d.tar.gz xmobar-6e124f046b5b92dd3cdfc4a4ea337e3aca4c025d.tar.bz2 |
swaybar-protocol: very basic format
Diffstat (limited to 'src/Xmobar/Config')
-rw-r--r-- | src/Xmobar/Config/Types.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Xmobar/Config/Types.hs b/src/Xmobar/Config/Types.hs index 7914a87..951759d 100644 --- a/src/Xmobar/Config/Types.hs +++ b/src/Xmobar/Config/Types.hs @@ -98,7 +98,7 @@ data Border = NoBorder | FullBM Int deriving ( Read, Show, Eq ) -data TextOutputFormat = Plain | Ansi | Pango deriving ( Read, Show, Eq ) +data TextOutputFormat = Plain | Ansi | Pango | Swaybar deriving (Read, Show, Eq) newtype SignalChan = SignalChan { unSignalChan :: Maybe (STM.TMVar SignalType) } |