Skip to content
trans edited this page Jul 27, 2012 · 3 revisions

Adding Launchers

dmenu

Add this to the bottom of nwm-user-sample.js, just before // START:

// window + menu key -> dmenu
nwm.addKey({ key: 65383, modifier: baseModifier }, function(event) {
  child_process.spawn('dmenu_run', ['-b','-i'], { env: process.env });
});
Clone this wiki locally