diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2020-02-02 00:14:27 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2020-02-02 00:14:27 -0700 |
| commit | ea5781b38dfade1c99b141bea814849a8fcb8fd4 (patch) | |
| tree | 57cd2112f37aa588a9bca0fe16fec71a2e54f292 | |
| parent | 766675ca92cac6aa3bb67fa45ae28da28ae86bcc (diff) | |
| download | rde-ea5781b38dfade1c99b141bea814849a8fcb8fd4.tar.gz rde-ea5781b38dfade1c99b141bea814849a8fcb8fd4.tar.bz2 rde-ea5781b38dfade1c99b141bea814849a8fcb8fd4.zip | |
Support for DRun + Start some support for Tilda although it seems to be not wanting to cooperate.
| -rw-r--r-- | src/Internal/Keys.hs | 2 | ||||
| -rw-r--r-- | src/Main.hs | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs index b00458e..6ce3ffa 100644 --- a/src/Internal/Keys.hs +++ b/src/Internal/Keys.hs @@ -36,6 +36,8 @@ newKeys = [ ((modm, xK_F12), (void $ spawn "spotify-control next")) , ((modm, xK_F11), (void $ spawn "spotify-control prev")) , ((modm, xK_F10), (void $ spawn "spotify-control play")) + , ((modm, xK_r), (void $ spawn "dmenu_run")) + , ((modm .|. shiftMask, xK_r), (void $ spawn "gmrun")) , ((modm .|. mod1Mask, xK_l), (void $ spawn "xscreensaver-command -lock")) , ((modm, xK_t), (void $ spawn (terminal config))) , ((modm, xK_m), (submap $ mapAlpha modm (markCurrentWindow markContext))) diff --git a/src/Main.hs b/src/Main.hs index c067b62..a160aa8 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -27,6 +27,9 @@ main = do myLayout , startupHook = do spawn fp + , manageHook = composeAll [ + className =? "Tilda" --> doFloat + ] } xmonad =<< xmobar config { modMask = mod4Mask } |