diff options
Diffstat (limited to '.config/XMonad/lib/Keybindings.hs')
| -rw-r--r-- | .config/XMonad/lib/Keybindings.hs | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/.config/XMonad/lib/Keybindings.hs b/.config/XMonad/lib/Keybindings.hs index 2c8743d..724a8a4 100644 --- a/.config/XMonad/lib/Keybindings.hs +++ b/.config/XMonad/lib/Keybindings.hs @@ -161,9 +161,9 @@ myKeybindingsP = [      , ("<XF86AudioMute>",         spawn volMute)      -- actions      -- TODO: add reboot, shutdown, logout, copy, cut, paste -    , ("M-a w",     spawn volMute) +    , ("M-a w",     spawn wifiOff)      , ("M-a S-w",   spawn wifiOn) -    , ("M-a s",     spawn wifiOff) +    , ("M-a s",     spawn customScreenshot)      , ("M-a S-s",   spawn fullScreenshot)      , ("M-a m",     spawn volMute)      -- media @@ -196,6 +196,7 @@ myKeybindingsP = [      , ("M-n v",     spawn $ myBrowser ++ " https://vidhukant.xyz")      , ("M-n S-v",   spawn $ myBrowser ++ " https://blog.vidhukant.xyz")      , ("M-n m",     spawn $ myBrowser ++ " https://myanimelist.net/profile/0ZeroTsu") +    , ("M-n M",     spawn $ myBrowser ++ " https://animixplay.to")      -- other apps      -- TODO: add scrcpy      , ("M-y e",     spawn myTextEditor) |