From e6b2a313b46e41af3f4955276edb8e7e1fd8c651 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 3 Oct 2016 16:50:21 -0700 Subject: [PATCH] [XMonad] Put copyq_rofi on hyper keybinding --- dotfiles/xmonad/xmonad.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/xmonad/xmonad.hs b/dotfiles/xmonad/xmonad.hs index 6bd68afa..3952f80c 100644 --- a/dotfiles/xmonad/xmonad.hs +++ b/dotfiles/xmonad/xmonad.hs @@ -40,11 +40,11 @@ addKeys conf@XConfig {modMask = modm} = , ((modm .|. controlMask, xK_t), spawn "restart.sh taffybar") -- TODO: Change this to bringing the window to the current workspace , ((modm, xK_b), bringMenuArgs' "rofi" ["-dmenu"]) - , ((modm, xK_v), spawn "copyq_rofi.sh") + , ((mod3Mask, xK_v), spawn "copyq_rofi.sh") , ((modm .|. controlMask, xK_space), sendMessage $ JumpToLayout "Full") , ((modm, xK_slash), sendMessage $ Toggle MIRROR) , ((modm, xK_m), withFocused minimizeWindow) - , ((modm .|. shiftMask, xK_m ), sendMessage RestoreNextMinimizedWin) + , ((modm .|. shiftMask, xK_m), sendMessage RestoreNextMinimizedWin) ] ++ -- Replace original moving stuff around + greedy view bindings [((additionalMask .|. modm, key), windows $ function workspace)