ENH remove useless default key

This commit is contained in:
Nathan Dwarshuis 2021-11-19 22:14:25 -05:00
parent 5a97a09623
commit 543858c95e
5 changed files with 0 additions and 13 deletions

View File

@ -314,7 +314,6 @@ getBattery :: BarFeature
getBattery = Feature getBattery = Feature
{ ftrAction = batteryCmd { ftrAction = batteryCmd
, ftrSilent = False , ftrSilent = False
, ftrDefault = Nothing
, ftrChildren = [Dependency $ IOTest hasBattery] , ftrChildren = [Dependency $ IOTest hasBattery]
} }
@ -324,7 +323,6 @@ getVPN :: BarFeature
getVPN = Feature getVPN = Feature
{ ftrAction = vpnCmd { ftrAction = vpnCmd
, ftrSilent = False , ftrSilent = False
, ftrDefault = Nothing
, ftrChildren = [d, v] , ftrChildren = [d, v]
} }
where where
@ -335,7 +333,6 @@ getBt :: BarFeature
getBt = Feature getBt = Feature
{ ftrAction = btCmd { ftrAction = btCmd
, ftrSilent = False , ftrSilent = False
, ftrDefault = Nothing
, ftrChildren = [dep] , ftrChildren = [dep]
} }
where where
@ -344,7 +341,6 @@ getBt = Feature
getAlsa :: BarFeature getAlsa :: BarFeature
getAlsa = Feature getAlsa = Feature
{ ftrAction = alsaCmd { ftrAction = alsaCmd
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [exe "alsactl"] , ftrChildren = [exe "alsactl"]
} }
@ -352,7 +348,6 @@ getAlsa = Feature
getBl :: BarFeature getBl :: BarFeature
getBl = Feature getBl = Feature
{ ftrAction = blCmd { ftrAction = blCmd
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [curFileDep, maxFileDep] , ftrChildren = [curFileDep, maxFileDep]
} }
@ -360,7 +355,6 @@ getBl = Feature
getSs :: BarFeature getSs :: BarFeature
getSs = Feature getSs = Feature
{ ftrAction = ssCmd { ftrAction = ssCmd
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [ssDep] , ftrChildren = [ssDep]
} }

View File

@ -96,7 +96,6 @@ runTMux :: IO MaybeX
runTMux = evalFeature $ Feature runTMux = evalFeature $ Feature
{ ftrAction = cmd { ftrAction = cmd
, ftrSilent = False , ftrSilent = False
, ftrDefault = Nothing
, ftrChildren = [exe myTerm, exe "tmux", exe "bash"] , ftrChildren = [exe myTerm, exe "tmux", exe "bash"]
} }
where where

View File

@ -102,7 +102,6 @@ brightnessExporter :: RealFrac b => [Dependency (IO ())]
-> BrightnessConfig a b -> Client -> Feature (IO ()) (IO ()) -> BrightnessConfig a b -> Client -> Feature (IO ()) (IO ())
brightnessExporter deps bc client = Feature brightnessExporter deps bc client = Feature
{ ftrAction = exportBrightnessControls' bc client { ftrAction = exportBrightnessControls' bc client
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = deps , ftrChildren = deps
} }
@ -138,7 +137,6 @@ callBacklight :: BrightnessConfig a b -> Feature (IO ()) (IO ()) -> MemberName
callBacklight BrightnessConfig { bcPath = p, bcInterface = i } exporter mem = callBacklight BrightnessConfig { bcPath = p, bcInterface = i } exporter mem =
Feature Feature
{ ftrAction = void $ callMethod $ methodCall p i mem { ftrAction = void $ callMethod $ methodCall p i mem
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [SubFeature exporter] , ftrChildren = [SubFeature exporter]
} }

View File

@ -109,7 +109,6 @@ exportScreensaver client = initControls client exportScreensaver' controls
exportScreensaver' :: Client -> Feature (IO ()) (IO ()) exportScreensaver' :: Client -> Feature (IO ()) (IO ())
exportScreensaver' client = Feature exportScreensaver' client = Feature
{ ftrAction = cmd { ftrAction = cmd
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [ssDep] , ftrChildren = [ssDep]
} }
@ -125,7 +124,6 @@ exportScreensaver' client = Feature
callToggle :: Feature (IO ()) (IO ()) -> Feature (IO ()) (IO ()) callToggle :: Feature (IO ()) (IO ()) -> Feature (IO ()) (IO ())
callToggle exporter = Feature callToggle exporter = Feature
{ ftrAction = cmd { ftrAction = cmd
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = [SubFeature exporter] , ftrChildren = [SubFeature exporter]
} }

View File

@ -82,7 +82,6 @@ data Dependency a = SubFeature (Feature a a)
data Feature a b = Feature data Feature a b = Feature
{ ftrAction :: a { ftrAction :: a
, ftrDefault :: Maybe a
, ftrSilent :: Bool , ftrSilent :: Bool
, ftrChildren :: [Dependency b] , ftrChildren :: [Dependency b]
} | ConstFeature a } | ConstFeature a
@ -261,7 +260,6 @@ runIfInstalled :: [Dependency a] -> b -> IO (MaybeExe b)
runIfInstalled ds x = evalFeature $ runIfInstalled ds x = evalFeature $
Feature Feature
{ ftrAction = x { ftrAction = x
, ftrDefault = Nothing
, ftrSilent = False , ftrSilent = False
, ftrChildren = ds , ftrChildren = ds
} }