On 08.04.23 23:43, Страхиња Радић wrote: > On 23/04/08 07:24PM, p...@mailbox.org wrote: > > static const char *dmenu_extend[] = { "dmenu_extended_run", NULL }; > > How about: > > > > (Try changing your > > > dmenu_extended keybind to something else and see if that works or not). >
I tried to bind to other key, not worked. > 1. What happens if you use: > > static const char *dmenu_extend[] = { "dmenu_run", NULL }; > dmenu_run works as expected under the same keybinding. > 2. What happens when you run from the terminal emulator: > > 2.a: > $ dmenu_extended_run > [username@hostname~]$ dmenu_extended_run /usr/bin/dmenu dmenu_extended_run executed in urxvt, print `/usr/bin/dmenu` in the output, then showed the file list as expected. > 2.b: > $ which dmenu_extended_run > [username@hostname~]$ which dmenu_extended_run /usr/bin/dmenu_extended_run > 3. What happens if you add the path obtained from 2.b to the command > > > static const char *dmenu_extend[] = { "dmenu_extended_run", NULL }; > ^-- here, before 'd'? > static const char *dmenu_extend[] = { "/usr/bin/dmenu_extended_run", NULL }; dmenu_extended_run did not launch, too.