xmonad-config/bin/xmobar.hs

414 lines
10 KiB
Haskell
Raw Normal View History

2020-04-01 20:17:47 -04:00
module Main (main) where
--------------------------------------------------------------------------------
-- | 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
import Control.Monad (unless)
import Data.Either
2020-04-01 20:17:47 -04:00
import Data.List
import Data.Maybe
2020-04-01 20:17:47 -04:00
import DBus
import System.Directory
import System.Exit
2021-06-23 23:08:50 -04:00
import System.IO
import System.IO.Error
import System.Process
( readProcessWithExitCode
)
2020-03-25 18:55:52 -04:00
import Xmobar.Plugins.Bluetooth
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
import XMonad (getXMonadDir)
import XMonad.Hooks.DynamicLog
( wrap
, xmobarColor
)
import XMonad.Internal.Command.Power (hasBattery)
import XMonad.Internal.DBus.Brightness.IntelBacklight
2021-11-21 10:26:28 -05:00
import XMonad.Internal.Shell
-- import XMonad.Internal.DBus.Common (xmonadBus)
-- import XMonad.Internal.DBus.Control (pathExists)
import XMonad.Internal.DBus.Screensaver (ssSignalDep)
2021-11-08 00:27:39 -05:00
import XMonad.Internal.Dependency
-- import XMonad.Internal.Shell (fmtCmd)
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
rs <- sequence rightPlugins
warnMissing rs
cs <- getAllCommands rs
2021-06-23 23:08:50 -04:00
d <- getXMonadDir
-- this is needed to see any printed messages
hFlush stdout
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-23 23:08:50 -04:00
, sepChar = pSep
, alignSep = [lSep, rSep]
, template = fmtRegions br
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
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
wirelessCmd :: String -> CmdSpec
wirelessCmd iface = CmdSpec
{ csAlias = iface ++ "wi"
, csRunnable = Run
$ Wireless iface
[ "-t", "<qualityipat><essid>"
, "--"
, "--quality-icon-pattern", "<icon=wifi_%%.xpm/>"
] 5
}
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
}
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
, "-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'"
]
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 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 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>"
}
ckCmd :: CmdSpec
ckCmd = CmdSpec
{ csAlias = ckAlias
2021-11-21 00:42:40 -05:00
, csRunnable = Run $ ClevoKeyboard "<fn=1>\xf40b</fn>"
}
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 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 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 23:08:50 -04:00
--------------------------------------------------------------------------------
-- | command runtime checks and setup
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-11-20 11:48:05 -05:00
dbusDep :: Bool -> BusName -> ObjectPath -> InterfaceName -> DBusMember -> Dependency
dbusDep usesys bus obj iface mem = DBusEndpoint (Bus usesys bus) (Endpoint obj iface mem)
2021-11-08 00:27:39 -05: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 23:08:50 -04:00
sysfsNet :: FilePath
sysfsNet = "/sys/class/net"
readInterface :: (String -> Bool) -> IO (Maybe String)
readInterface f = do
ns <- filter f <$> listInterfaces
case ns of
(x:xs) -> do
unless (null xs) $
putStrLn $ "WARNING: extra interfaces found, using " ++ x
return $ Just x
_ -> return Nothing
2021-11-19 00:35:54 -05:00
vpnPresent :: IO (Maybe String)
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"
where
args = ["-c", "no", "-t", "-f", "TYPE", "c", "show"]
2021-11-21 10:26:28 -05:00
rightPlugins :: [IO (MaybeAction CmdSpec)]
rightPlugins =
[ getWireless
, getEthernet
2021-11-11 23:25:11 -05:00
, evalFeature getVPN
, evalFeature getBt
, evalFeature getAlsa
, evalFeature getBattery
, evalFeature getBl
, nocheck ckCmd
2021-11-11 23:25:11 -05:00
, evalFeature getSs
, nocheck lockCmd
, nocheck dateCmd
]
where
2021-11-19 00:35:54 -05:00
nocheck = return . Right
2021-11-21 10:26:28 -05:00
getWireless :: IO (MaybeAction CmdSpec)
2021-06-23 23:08:50 -04:00
getWireless = do
i <- readInterface isWireless
2021-11-19 00:35:54 -05:00
return $ maybe (Left []) (Right . wirelessCmd) i
2021-06-23 23:08:50 -04:00
2021-11-21 10:26:28 -05:00
getEthernet :: IO (MaybeAction CmdSpec)
2021-06-23 23:08:50 -04:00
getEthernet = do
i <- readInterface isEthernet
2021-11-21 10:26:28 -05:00
evalFeature $ maybe BlankFeature (featureDefault "ethernet status indicator" [dep] . ethernetCmd) i
where
dep = dbusDep True 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-21 10:26:28 -05:00
{ ftrMaybeAction = batteryCmd
, ftrName = "battery level indicator"
, ftrWarning = Default
2021-11-20 11:48:05 -05:00
, ftrChildren = [IOTest hasBattery]
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
getVPN :: BarFeature
getVPN = Feature
2021-11-21 10:26:28 -05:00
{ ftrMaybeAction = vpnCmd
, ftrName = "VPN status indicator"
, ftrWarning = Default
2021-11-11 23:25:11 -05:00
, ftrChildren = [d, v]
}
where
d = dbusDep True vpnBus vpnPath vpnInterface $ Property_ vpnConnType
2021-11-20 11:48:05 -05:00
v = IOTest vpnPresent
2021-11-11 23:25:11 -05:00
getBt :: BarFeature
getBt = Feature
2021-11-21 10:26:28 -05:00
{ ftrMaybeAction = btCmd
, ftrName = "bluetooth status indicator"
, ftrWarning = Default
2021-11-11 23:25:11 -05:00
, ftrChildren = [dep]
}
2021-11-08 00:27:39 -05:00
where
dep = dbusDep True 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-21 10:26:28 -05:00
{ ftrMaybeAction = alsaCmd
, ftrName = "volume level indicator"
, ftrWarning = Default
, ftrChildren = [Executable "alsactl"]
2021-11-11 23:25:11 -05:00
}
2021-06-23 23:08:50 -04:00
2021-11-11 23:25:11 -05:00
getBl :: BarFeature
getBl = Feature
2021-11-21 10:26:28 -05:00
{ ftrMaybeAction = blCmd
, ftrName = "Intel backlight indicator"
, ftrWarning = Default
, ftrChildren = [intelBacklightSignalDep]
2021-11-11 23:25:11 -05:00
}
2021-06-23 23:08:50 -04:00
2021-11-11 23:25:11 -05:00
getSs :: BarFeature
getSs = Feature
2021-11-21 10:26:28 -05:00
{ ftrMaybeAction = ssCmd
, ftrName = "screensaver indicator"
, ftrWarning = Default
, ftrChildren = [ssSignalDep]
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
getAllCommands right = do
2021-06-23 23:08:50 -04:00
let left =
[ CmdSpec
{ csAlias = "UnsafeStdinReader"
, csRunnable = Run UnsafeStdinReader
}
]
return $ BarRegions
{ brLeft = left
, brCenter = []
, brRight = mapMaybe eval right
}
where
2021-11-19 00:35:54 -05:00
eval (Right x) = Just x
eval _ = Nothing
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 = "%"
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
}
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
, T.pixelsize = Just size
2020-03-16 13:50:08 -04:00
}
iconFont :: String
iconFont = nerdFont 13
2020-03-22 17:17:57 -04:00
iconFontLarge :: String
iconFontLarge = nerdFont 15
2020-03-22 17:17:57 -04:00
2021-06-30 22:47:49 -04:00
iconFontXLarge :: String
iconFontXLarge = nerdFont 20