From 365a1d02679a505fe7e628954d07a6309b31a312 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Thu, 26 Mar 2020 22:06:38 -0400 Subject: [PATCH] REF make this name consistent --- bin/xmonad.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/xmonad.hs b/bin/xmonad.hs index df02e0e..6a12326 100644 --- a/bin/xmonad.hs +++ b/bin/xmonad.hs @@ -503,8 +503,8 @@ runMinBacklight = io $ void callMinBrightness runMaxBacklight :: X () runMaxBacklight = io $ void callMaxBrightness -toggleDPMS :: X () -toggleDPMS = io $ void callToggle +runToggleDPMS :: X () +runToggleDPMS = io $ void callToggle -- keybindings @@ -649,6 +649,6 @@ mkKeys hs client c = , ("M-", "restart xmonad", runCleanup hs client >> runRestart) , ("M-", "recompile xmonad", runRecompile) , ("M-", "toggle bluetooth", runToggleBluetooth) - , ("M-", "toggle screensaver", toggleDPMS) + , ("M-", "toggle screensaver", runToggleDPMS) , ("M-", "switch gpu", runOptimusPrompt) ]