2020-04-01 20:17:47 -04:00
|
|
|
module Main (main) where
|
|
|
|
|
2020-04-01 22:35:53 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | Xmobar binary
|
|
|
|
--
|
|
|
|
-- Features:
|
|
|
|
-- * Uses the 'UnsafeStdinReader' to receive the current workspace/layout config
|
|
|
|
-- from xmonad
|
|
|
|
-- * FontAwesome and Symbol fonts for icons
|
|
|
|
-- * Some custom plugins (imported below)
|
|
|
|
-- * Theme integration with xmonad (shared module imported below)
|
|
|
|
-- * A custom Locks plugin from my own forked repo
|
|
|
|
|
2021-11-09 00:59:17 -05:00
|
|
|
import Control.Monad (unless)
|
2021-06-23 00:09:59 -04:00
|
|
|
import Data.Either
|
2020-04-01 20:17:47 -04:00
|
|
|
import Data.List
|
2021-06-23 00:09:59 -04:00
|
|
|
import Data.Maybe
|
2020-04-01 20:17:47 -04:00
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
import DBus.Client
|
2021-06-21 23:41:57 -04:00
|
|
|
|
2021-06-23 00:09:59 -04:00
|
|
|
import System.Directory
|
2021-06-23 00:38:23 -04:00
|
|
|
import System.Exit
|
2021-06-23 23:08:50 -04:00
|
|
|
import System.IO
|
2021-06-23 00:09:59 -04:00
|
|
|
import System.IO.Error
|
2021-11-07 13:35:08 -05:00
|
|
|
import System.Process
|
|
|
|
( readProcessWithExitCode
|
|
|
|
)
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2020-03-25 18:55:52 -04:00
|
|
|
import Xmobar.Plugins.Bluetooth
|
2021-11-05 21:15:37 -04:00
|
|
|
import Xmobar.Plugins.ClevoKeyboard
|
2020-05-28 23:17:17 -04:00
|
|
|
import Xmobar.Plugins.Device
|
2020-03-25 18:55:52 -04:00
|
|
|
import Xmobar.Plugins.IntelBacklight
|
|
|
|
import Xmobar.Plugins.Screensaver
|
|
|
|
import Xmobar.Plugins.VPN
|
2020-03-15 15:10:25 -04:00
|
|
|
|
2021-11-07 13:35:08 -05:00
|
|
|
import XMonad (getXMonadDir)
|
|
|
|
import XMonad.Hooks.DynamicLog
|
|
|
|
( wrap
|
|
|
|
, xmobarColor
|
|
|
|
)
|
|
|
|
import XMonad.Internal.Command.Power (hasBattery)
|
2021-11-21 17:54:00 -05:00
|
|
|
import XMonad.Internal.DBus.Brightness.ClevoKeyboard
|
2021-11-09 00:59:17 -05:00
|
|
|
import XMonad.Internal.DBus.Brightness.IntelBacklight
|
2021-11-21 22:47:43 -05:00
|
|
|
import XMonad.Internal.DBus.Control
|
2021-11-21 10:26:28 -05:00
|
|
|
import XMonad.Internal.Shell
|
2021-11-09 00:59:17 -05:00
|
|
|
-- import XMonad.Internal.DBus.Common (xmonadBus)
|
|
|
|
-- import XMonad.Internal.DBus.Control (pathExists)
|
2021-11-20 19:35:24 -05:00
|
|
|
import XMonad.Internal.DBus.Screensaver (ssSignalDep)
|
2021-11-08 00:27:39 -05:00
|
|
|
import XMonad.Internal.Dependency
|
|
|
|
-- import XMonad.Internal.Shell (fmtCmd)
|
2021-11-07 13:35:08 -05:00
|
|
|
import qualified XMonad.Internal.Theme as T
|
2021-06-19 00:54:01 -04:00
|
|
|
import Xmobar
|
2020-03-15 13:12:01 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
main :: IO ()
|
|
|
|
main = do
|
2021-11-21 22:47:43 -05:00
|
|
|
sysClient <- getDBusClient True
|
|
|
|
sesClient <- getDBusClient False
|
|
|
|
rs <- rightPlugins sysClient sesClient
|
2021-11-09 00:59:17 -05:00
|
|
|
warnMissing rs
|
|
|
|
cs <- getAllCommands rs
|
2021-06-23 23:08:50 -04:00
|
|
|
d <- getXMonadDir
|
2021-11-09 00:59:17 -05:00
|
|
|
-- this is needed to see any printed messages
|
|
|
|
hFlush stdout
|
2021-11-21 22:47:43 -05:00
|
|
|
mapM_ (maybe skip disconnect) [sysClient, sesClient]
|
2021-06-23 23:08:50 -04:00
|
|
|
xmobar $ config cs d
|
2020-03-15 13:12:01 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
config :: BarRegions -> String -> Config
|
|
|
|
config br confDir = defaultConfig
|
|
|
|
{ font = barFont
|
2021-06-30 22:47:49 -04:00
|
|
|
, additionalFonts = [iconFont, iconFontLarge, iconFontXLarge]
|
2021-06-23 23:08:50 -04:00
|
|
|
, textOffset = 16
|
2021-06-30 22:47:49 -04:00
|
|
|
, textOffsets = [16, 17, 18]
|
2021-06-23 23:08:50 -04:00
|
|
|
, bgColor = T.bgColor
|
|
|
|
, fgColor = T.fgColor
|
|
|
|
, position = BottomSize C 100 24
|
|
|
|
, border = NoBorder
|
|
|
|
, borderColor = T.bordersColor
|
2021-06-21 23:41:57 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
, sepChar = pSep
|
|
|
|
, alignSep = [lSep, rSep]
|
|
|
|
, template = fmtRegions br
|
2020-04-01 22:35:53 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
, lowerOnStart = False
|
|
|
|
, hideOnStart = False
|
|
|
|
, allDesktops = True
|
|
|
|
, overrideRedirect = True
|
|
|
|
, pickBroadest = False
|
|
|
|
, persistent = True
|
|
|
|
-- store the icons with the xmonad/xmobar stack project
|
|
|
|
, iconRoot = confDir ++ "/icons"
|
|
|
|
|
|
|
|
, commands = csRunnable <$> concatRegions br
|
|
|
|
}
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | command specifications
|
2020-04-01 22:35:53 -04:00
|
|
|
|
2021-06-21 23:41:57 -04:00
|
|
|
data BarRegions = BarRegions
|
|
|
|
{ brLeft :: [CmdSpec]
|
|
|
|
, brCenter :: [CmdSpec]
|
|
|
|
, brRight :: [CmdSpec]
|
|
|
|
} deriving Show
|
|
|
|
|
|
|
|
data CmdSpec = CmdSpec
|
|
|
|
{ csAlias :: String
|
|
|
|
, csRunnable :: Runnable
|
|
|
|
} deriving Show
|
|
|
|
|
|
|
|
concatRegions :: BarRegions -> [CmdSpec]
|
|
|
|
concatRegions (BarRegions l c r) = l ++ c ++ r
|
|
|
|
|
2021-06-23 00:09:59 -04:00
|
|
|
wirelessCmd :: String -> CmdSpec
|
2021-06-23 20:19:55 -04:00
|
|
|
wirelessCmd iface = CmdSpec
|
|
|
|
{ csAlias = iface ++ "wi"
|
2021-06-23 00:09:59 -04:00
|
|
|
, csRunnable = Run
|
2021-06-23 20:19:55 -04:00
|
|
|
$ Wireless iface
|
2021-06-23 00:09:59 -04:00
|
|
|
[ "-t", "<qualityipat><essid>"
|
|
|
|
, "--"
|
|
|
|
, "--quality-icon-pattern", "<icon=wifi_%%.xpm/>"
|
|
|
|
] 5
|
|
|
|
}
|
|
|
|
|
2021-06-23 20:19:55 -04:00
|
|
|
ethernetCmd :: String -> CmdSpec
|
|
|
|
ethernetCmd iface = CmdSpec
|
|
|
|
{ csAlias = iface
|
|
|
|
, csRunnable = Run
|
2021-06-23 20:20:52 -04:00
|
|
|
$ Device (iface, "<fn=2>\xf0e8</fn>", T.fgColor, T.backdropFgColor) 5
|
2021-06-23 20:19:55 -04:00
|
|
|
}
|
|
|
|
|
2021-06-23 20:47:41 -04:00
|
|
|
batteryCmd :: CmdSpec
|
|
|
|
batteryCmd = CmdSpec
|
|
|
|
{ csAlias = "battery"
|
|
|
|
, csRunnable = Run
|
|
|
|
$ Battery
|
|
|
|
[ "--template", "<acstatus><left>"
|
|
|
|
, "--Low", "10"
|
|
|
|
, "--High", "80"
|
|
|
|
, "--low", "red"
|
|
|
|
, "--normal", T.fgColor
|
|
|
|
, "--high", T.fgColor
|
|
|
|
, "--"
|
2021-06-30 23:04:00 -04:00
|
|
|
, "-a", notify
|
2021-06-23 20:47:41 -04:00
|
|
|
, "-P"
|
|
|
|
, "-o" , "<fn=1>\xf0e7</fn>"
|
|
|
|
, "-O" , "<fn=1>\xf1e6</fn>"
|
|
|
|
, "-i" , "<fn=1>\xf1e6</fn>"
|
|
|
|
] 50
|
|
|
|
}
|
2021-06-30 23:04:00 -04:00
|
|
|
where
|
|
|
|
notify = fmtCmd "notify-send"
|
|
|
|
[ "-u"
|
|
|
|
, "critical"
|
|
|
|
, "-i"
|
|
|
|
, "'dialog-information-symbolic'"
|
|
|
|
, "'low battery'"
|
|
|
|
]
|
2021-06-23 20:47:41 -04:00
|
|
|
|
2021-06-23 00:38:23 -04:00
|
|
|
vpnCmd :: CmdSpec
|
|
|
|
vpnCmd = CmdSpec
|
|
|
|
{ csAlias = vpnAlias
|
|
|
|
, csRunnable = Run
|
|
|
|
$ VPN ("<fn=2>\xf023</fn>", T.fgColor, T.backdropFgColor) 5
|
|
|
|
}
|
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
btCmd :: CmdSpec
|
|
|
|
btCmd = CmdSpec
|
|
|
|
{ csAlias = btAlias
|
|
|
|
, csRunnable = Run
|
|
|
|
$ Bluetooth ("<fn=2>\xf293</fn>", T.fgColor, T.backdropFgColor) 5
|
|
|
|
}
|
2021-06-23 00:38:23 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
alsaCmd :: CmdSpec
|
|
|
|
alsaCmd = CmdSpec
|
|
|
|
{ csAlias = "alsa:default:Master"
|
|
|
|
, csRunnable = Run
|
|
|
|
$ Alsa "default" "Master"
|
|
|
|
[ "-t", "<status><volume>%"
|
|
|
|
, "--"
|
|
|
|
, "-O", "<fn=1>\xf028</fn>"
|
|
|
|
, "-o", "<fn=1>\xf026 </fn>"
|
|
|
|
, "-c", T.fgColor
|
|
|
|
, "-C", T.fgColor
|
|
|
|
]
|
|
|
|
}
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
blCmd :: CmdSpec
|
|
|
|
blCmd = CmdSpec
|
2021-11-21 00:42:40 -05:00
|
|
|
{ csAlias = blAlias
|
2021-06-23 23:08:50 -04:00
|
|
|
, csRunnable = Run $ IntelBacklight "<fn=1>\xf185</fn>"
|
|
|
|
}
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-11-05 21:15:37 -04:00
|
|
|
ckCmd :: CmdSpec
|
|
|
|
ckCmd = CmdSpec
|
|
|
|
{ csAlias = ckAlias
|
2021-11-21 00:42:40 -05:00
|
|
|
, csRunnable = Run $ ClevoKeyboard "<fn=1>\xf40b</fn>"
|
2021-11-05 21:15:37 -04:00
|
|
|
}
|
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
ssCmd :: CmdSpec
|
|
|
|
ssCmd = CmdSpec
|
|
|
|
{ csAlias = ssAlias
|
|
|
|
, csRunnable = Run
|
|
|
|
$ Screensaver ("<fn=1>\xf254</fn>", T.fgColor, T.backdropFgColor)
|
|
|
|
}
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
lockCmd :: CmdSpec
|
|
|
|
lockCmd = CmdSpec
|
|
|
|
{ csAlias = "locks"
|
|
|
|
, csRunnable = Run
|
|
|
|
$ Locks
|
2021-06-30 22:47:49 -04:00
|
|
|
[ "-N", "<fn=3>\xf8a5</fn>"
|
|
|
|
, "-n", xmobarColor T.backdropFgColor "" "<fn=3>\xf8a5</fn>"
|
|
|
|
, "-C", "<fn=3>\xf657</fn>"
|
|
|
|
, "-c", xmobarColor T.backdropFgColor "" "<fn=3>\xf657</fn>"
|
2021-06-23 23:08:50 -04:00
|
|
|
, "-s", ""
|
|
|
|
, "-S", ""
|
2021-06-30 22:47:49 -04:00
|
|
|
, "-d", " "
|
2021-06-23 23:08:50 -04:00
|
|
|
]
|
|
|
|
}
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
dateCmd :: CmdSpec
|
|
|
|
dateCmd = CmdSpec
|
|
|
|
{ csAlias = "date"
|
|
|
|
, csRunnable = Run $ Date "%Y-%m-%d %H:%M:%S " "date" 10
|
|
|
|
}
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | command runtime checks and setup
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
-- some commands depend on the presence of interfaces that can only be
|
|
|
|
-- determined at runtime; define these checks here
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
-- in the case of network interfaces, assume that the system uses systemd in
|
|
|
|
-- which case ethernet interfaces always start with "en" and wireless
|
|
|
|
-- interfaces always start with "wl"
|
|
|
|
isWireless :: String -> Bool
|
|
|
|
isWireless ('w':'l':_) = True
|
|
|
|
isWireless _ = False
|
|
|
|
|
|
|
|
isEthernet :: String -> Bool
|
|
|
|
isEthernet ('e':'n':_) = True
|
|
|
|
isEthernet _ = False
|
|
|
|
|
|
|
|
listInterfaces :: IO [String]
|
|
|
|
listInterfaces = fromRight [] <$> tryIOError (listDirectory sysfsNet)
|
2021-06-23 00:09:59 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
sysfsNet :: FilePath
|
|
|
|
sysfsNet = "/sys/class/net"
|
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
readInterface :: (String -> Bool) -> IO (Either [String] String)
|
2021-11-09 00:59:17 -05:00
|
|
|
readInterface f = do
|
|
|
|
ns <- filter f <$> listInterfaces
|
|
|
|
case ns of
|
2021-11-21 22:47:43 -05:00
|
|
|
[] -> return $ Left ["no interfaces found"]
|
2021-11-09 00:59:17 -05:00
|
|
|
(x:xs) -> do
|
|
|
|
unless (null xs) $
|
|
|
|
putStrLn $ "WARNING: extra interfaces found, using " ++ x
|
2021-11-21 22:47:43 -05:00
|
|
|
return $ Right x
|
2021-11-09 00:59:17 -05:00
|
|
|
|
2021-11-19 00:35:54 -05:00
|
|
|
vpnPresent :: IO (Maybe String)
|
2021-11-09 00:59:17 -05:00
|
|
|
vpnPresent = do
|
|
|
|
res <- tryIOError $ readProcessWithExitCode "nmcli" args ""
|
|
|
|
-- TODO provide some error messages
|
|
|
|
return $ case res of
|
2021-11-19 00:35:54 -05:00
|
|
|
(Right (ExitSuccess, out, _)) -> if "vpn" `elem` lines out then Nothing else Just "vpn not found"
|
|
|
|
_ -> Just "puke"
|
2021-11-09 00:59:17 -05:00
|
|
|
where
|
|
|
|
args = ["-c", "no", "-t", "-f", "TYPE", "c", "show"]
|
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
rightPlugins :: Maybe Client -> Maybe Client -> IO [MaybeAction CmdSpec]
|
|
|
|
rightPlugins sysClient sesClient = mapM evalFeature
|
2021-11-09 00:59:17 -05:00
|
|
|
[ getWireless
|
2021-11-22 23:02:23 -05:00
|
|
|
, getEthernet sysClient
|
2021-11-21 23:07:33 -05:00
|
|
|
, getVPN sysClient
|
2021-11-21 22:47:43 -05:00
|
|
|
, getBt sysClient
|
|
|
|
, getAlsa
|
|
|
|
, getBattery
|
|
|
|
, getBl sesClient
|
|
|
|
, getCk sesClient
|
|
|
|
, getSs sesClient
|
|
|
|
, ConstFeature lockCmd
|
|
|
|
, ConstFeature dateCmd
|
2021-11-09 00:59:17 -05:00
|
|
|
]
|
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
getWireless :: BarFeature
|
|
|
|
getWireless = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = GenTree (Double wirelessCmd $ readInterface isWireless) []
|
2021-11-21 22:47:43 -05:00
|
|
|
, ftrName = "wireless status indicator"
|
|
|
|
, ftrWarning = Default
|
|
|
|
}
|
|
|
|
|
2021-11-22 23:02:23 -05:00
|
|
|
getEthernet :: Maybe Client -> BarFeature
|
|
|
|
getEthernet client = Feature
|
|
|
|
{ ftrAction = DBusTree (Double (\i _ -> ethernetCmd i) (readInterface isEthernet)) client [dep] []
|
2021-11-21 22:47:43 -05:00
|
|
|
, ftrName = "ethernet status indicator"
|
|
|
|
, ftrWarning = Default
|
|
|
|
}
|
2021-11-22 23:02:23 -05:00
|
|
|
where
|
|
|
|
dep = Endpoint devBus devPath devInterface $ Method_ devGetByIP
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-11 23:25:11 -05:00
|
|
|
getBattery :: BarFeature
|
|
|
|
getBattery = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = GenTree (Single batteryCmd) [IOTest hasBattery]
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "battery level indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-20 11:48:05 -05:00
|
|
|
type BarFeature = Feature CmdSpec
|
2021-11-11 23:25:11 -05:00
|
|
|
|
2021-11-21 23:07:33 -05:00
|
|
|
getVPN :: Maybe Client -> BarFeature
|
|
|
|
getVPN client = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = DBusTree (Single (const vpnCmd)) client [ep] [dp]
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "VPN status indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-11-21 23:55:19 -05:00
|
|
|
where
|
|
|
|
ep = Endpoint vpnBus vpnPath vpnInterface $ Property_ vpnConnType
|
|
|
|
dp = IOTest vpnPresent
|
2021-11-11 23:25:11 -05:00
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
getBt :: Maybe Client -> BarFeature
|
|
|
|
getBt client = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = DBusTree (Single (const btCmd)) client [ep] []
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "bluetooth status indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-11-21 23:55:19 -05:00
|
|
|
where
|
|
|
|
ep = Endpoint btBus btPath btInterface $ Property_ btPowered
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-11 23:25:11 -05:00
|
|
|
getAlsa :: BarFeature
|
|
|
|
getAlsa = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = GenTree (Single alsaCmd) [Executable "alsactl"]
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "volume level indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
getBl :: Maybe Client -> BarFeature
|
|
|
|
getBl client = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = DBusTree (Single (const blCmd)) client [intelBacklightSignalDep] []
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "Intel backlight indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
getCk :: Maybe Client -> BarFeature
|
|
|
|
getCk client = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = DBusTree (Single (const ckCmd)) client [clevoKeyboardSignalDep] []
|
2021-11-21 17:54:00 -05:00
|
|
|
, ftrName = "Clevo keyboard indicator"
|
|
|
|
, ftrWarning = Default
|
|
|
|
}
|
|
|
|
|
2021-11-21 22:47:43 -05:00
|
|
|
getSs :: Maybe Client -> BarFeature
|
|
|
|
getSs client = Feature
|
2021-11-22 23:02:23 -05:00
|
|
|
{ ftrAction = DBusTree (Single (const ssCmd)) client [ssSignalDep] []
|
2021-11-20 19:35:24 -05:00
|
|
|
, ftrName = "screensaver indicator"
|
|
|
|
, ftrWarning = Default
|
2021-11-11 23:25:11 -05:00
|
|
|
}
|
2021-06-23 23:08:50 -04:00
|
|
|
|
2021-11-21 10:26:28 -05:00
|
|
|
getAllCommands :: [MaybeAction CmdSpec] -> IO BarRegions
|
2021-11-09 00:59:17 -05:00
|
|
|
getAllCommands right = do
|
2021-06-23 23:08:50 -04:00
|
|
|
let left =
|
|
|
|
[ CmdSpec
|
|
|
|
{ csAlias = "UnsafeStdinReader"
|
|
|
|
, csRunnable = Run UnsafeStdinReader
|
2021-06-23 00:09:59 -04:00
|
|
|
}
|
2021-06-21 23:41:57 -04:00
|
|
|
]
|
2021-06-23 00:09:59 -04:00
|
|
|
return $ BarRegions
|
|
|
|
{ brLeft = left
|
|
|
|
, brCenter = []
|
2021-11-09 00:59:17 -05:00
|
|
|
, brRight = mapMaybe eval right
|
2021-06-23 00:09:59 -04:00
|
|
|
}
|
2021-11-09 00:59:17 -05:00
|
|
|
where
|
2021-11-19 00:35:54 -05:00
|
|
|
eval (Right x) = Just x
|
|
|
|
eval _ = Nothing
|
2021-06-21 23:41:57 -04:00
|
|
|
|
2021-06-23 23:08:50 -04:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- | various formatting things
|
|
|
|
|
|
|
|
sep :: String
|
|
|
|
sep = xmobarColor T.backdropFgColor "" " : "
|
|
|
|
|
|
|
|
lSep :: Char
|
|
|
|
lSep = '}'
|
|
|
|
|
|
|
|
rSep :: Char
|
|
|
|
rSep = '{'
|
|
|
|
|
|
|
|
pSep :: String
|
|
|
|
pSep = "%"
|
|
|
|
|
2021-06-21 23:41:57 -04:00
|
|
|
fmtSpecs :: [CmdSpec] -> String
|
|
|
|
fmtSpecs = intercalate sep . fmap go
|
|
|
|
where
|
|
|
|
go CmdSpec { csAlias = a } = wrap pSep pSep a
|
|
|
|
|
|
|
|
fmtRegions :: BarRegions -> String
|
|
|
|
fmtRegions BarRegions { brLeft = l, brCenter = c, brRight = r } =
|
|
|
|
fmtSpecs l ++ [lSep] ++ fmtSpecs c ++ [rSep] ++ fmtSpecs r
|
2020-03-15 13:12:01 -04:00
|
|
|
|
2020-03-16 13:50:08 -04:00
|
|
|
barFont :: String
|
|
|
|
barFont = T.fmtFontXFT T.font
|
|
|
|
{ T.family = "DejaVu Sans Mono"
|
|
|
|
, T.size = Just 11
|
|
|
|
, T.weight = Just T.Bold
|
|
|
|
}
|
|
|
|
|
2021-11-05 21:15:37 -04:00
|
|
|
nerdFont :: Int -> String
|
|
|
|
nerdFont size = T.fmtFontXFT T.font
|
2021-06-30 22:47:49 -04:00
|
|
|
{ T.family = "Symbols Nerd Font"
|
2020-03-16 13:50:08 -04:00
|
|
|
, T.size = Nothing
|
2021-11-05 21:15:37 -04:00
|
|
|
, T.pixelsize = Just size
|
2020-03-16 13:50:08 -04:00
|
|
|
}
|
|
|
|
|
2021-11-05 21:15:37 -04:00
|
|
|
iconFont :: String
|
|
|
|
iconFont = nerdFont 13
|
|
|
|
|
2020-03-22 17:17:57 -04:00
|
|
|
iconFontLarge :: String
|
2021-11-05 21:15:37 -04:00
|
|
|
iconFontLarge = nerdFont 15
|
2020-03-22 17:17:57 -04:00
|
|
|
|
2021-06-30 22:47:49 -04:00
|
|
|
iconFontXLarge :: String
|
2021-11-05 21:15:37 -04:00
|
|
|
iconFontXLarge = nerdFont 20
|