You are not logged in.
Pages: 1
Hi, I know the question may seem silly and maybe an XY Problem, but since im using dmenu to launch chromium, when i start typing its first result is "chromedriver" and the second one is "chromium" so i always have to choose second one, or completely type the name
Since dmenu looks for commands, and commands are binaries in directories we specify in profile file, is there anyway i can disable "chromedriver" command ?
^^>>> which chromedriver (127) 20:40:23
/usr/bin/chromedriverIt is included in chromium package and located its binary in /usr/bin so it gets detected as usual command
Is there anyway to prevent this specific binary to be counted as command ?
Or at least is there anyway to exclude this entry in dmenu_run results ?
Last edited by erfanjoker (2020-12-25 23:37:55)
Offline
alias it to chromium ?
Offline
If you bothered to actually use chromium to google your issue, you would find any number of threads, including on thee boards, descrbing how to remove items from dmenu.
Stop being such a help vampire.
Offline
alias it to chromium ?
It could be, but not a good solution since its awkward to type chromedriver and get chromium running
Offline
Take a look at /usr/bin/{dmenu_path,dmenu_run}. All dmenu_run does is pipe ~/.cache/dmenu_run, which in turn is prepared by dmenu_path, into dmenu.
You can easily write your own version of dmenu_run that filters out files you are not interested in.
Offline
http://tools.suckless.org/dmenu/patches/highpriority/
Last edited by CarbonChauvinist (2020-12-25 20:24:08)
"the wind-blown way, wanna win? don't play"
Offline
Take a look at /usr/bin/{dmenu_path,dmenu_run}. All dmenu_run does is pipe ~/.cache/dmenu_run, which in turn is prepared by dmenu_path, into dmenu.
You can easily write your own version of dmenu_run that filters out files you are not interested in.
Thanks a lot for explanation.
Thanks, it did the trick
Offline
Pages: 1