Skip to content
Snippets Groups Projects
Commit 4a11d066 authored by Jens Nolte's avatar Jens Nolte
Browse files

Improve batteryBlock plug state

parent ffaf6130
No related branches found
No related tags found
No related merge requests found
......@@ -72,11 +72,10 @@ batteryBlock = do
apiPath = "/sys/class/power_supply"
getPluggedState :: IO Bool
getPluggedState = do
stateAC <- getPluggedStateFromFile "/sys/class/power_supply/AC/online"
stateACAD <- fromMaybe False <$> getPluggedStateFromFile "/sys/class/power_supply/ACAD/online"
return $ fromMaybe stateACAD stateAC
getPluggedState = or . catMaybes <$> mapM getPluggedStateFromFile powerSupplyPaths
where
powerSupplyPaths :: [FilePath]
powerSupplyPaths = ["/sys/class/power_supply/AC/online", "/sys/class/power_supply/ACAD/online"]
getPluggedStateFromFile :: FilePath -> IO (Maybe Bool)
getPluggedStateFromFile f = do
line <- tryMaybe $ T.strip <$> TIO.readFile f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment