diff options
author | jeschli <jeschli@gmail.com> | 2018-06-19 09:41:29 +0200 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2018-06-19 09:41:29 +0200 |
commit | 92755669a3f8e517da41d49ab27db3e24f9dc488 (patch) | |
tree | 16facba833952e10d07e290f566d80114d48cd1a /jeschli/5pkgs/simple | |
parent | 90b6257922e9ee6e699fb423e19099ee2c9cf247 (diff) |
j xmonad: +dmenu
Diffstat (limited to 'jeschli/5pkgs/simple')
-rw-r--r-- | jeschli/5pkgs/simple/xmonad-jeschli/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/jeschli/5pkgs/simple/xmonad-jeschli/default.nix b/jeschli/5pkgs/simple/xmonad-jeschli/default.nix index 1f21e5b..48382dc 100644 --- a/jeschli/5pkgs/simple/xmonad-jeschli/default.nix +++ b/jeschli/5pkgs/simple/xmonad-jeschli/default.nix @@ -129,13 +129,16 @@ spawnTermAt ws = do let env' = ("XMONAD_SPAWN_WORKSPACE", ws) : env forkFile urxvtcPath [] (Just env') + myKeys :: XConfig Layout -> Map (KeyMask, KeySym) (X ()) myKeys conf = Map.fromList $ [ ((_4 , xK_Escape ), forkFile "/run/wrappers/bin/slock" [] Nothing) , ((_4S , xK_c ), kill) - , ((_4 , xK_p ), forkFile "${pkgs.pass}/bin/passmenu" ["--type"] Nothing) - + , ((_4 , xK_p ), spawn "${pkgs.writeDash "my-dmenu" '' + export PATH=$PATH:${pkgs.dmenu}/bin + exec dmenu_run "$@" + ''}") , ((_4 , xK_x ), chooseAction spawnTermAt) , ((_4C , xK_x ), spawnRootTerm) |