From 8c6abcaebc16c8dd805a3a8f9cc57e35890c3bc5 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Thu, 6 Feb 2020 15:25:31 -0700 Subject: Multiple changes. Mostly added a prompt to quickly switch between windows by fuzzy-finding them --- src/Internal/Keys.hs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Internal/Keys.hs') diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index fe13cc7..b710acf 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -16,6 +16,7 @@ import qualified XMonad.StackSet as W import XMonad.Prompt.Input import XMonad.Prompt.Shell import XMonad.Prompt +import XMonad.Util.Scratchpad import Data.Char type KeyMap l = XConfig l -> Map (KeyMask, KeySym) (X ()) @@ -85,6 +86,7 @@ newKeys = Map.fromList [ ((modm, xK_F12), (void $ spawn "spotify-control next")) , ((modm, xK_F11), (void $ spawn "spotify-control prev")) + , ((modm, xK_semicolon), scratchpadSpawnActionTerminal "scratchpad") , ((modm, xK_F10), (void $ spawn "spotify-control play")) , ((modm, xK_r), (void $ spawn "dmenu_run")) , ((modm .|. shiftMask, xK_r), (void $ spawn "gmrun")) -- cgit