Reyx_0 Asked: 2018-01-05 14:03:18 +0800 CST2018-01-05 14:03:18 +0800 CST 2018-01-05 14:03:18 +0800 CST 从dmenu中删除无法启动的程序 772 我将 i3 与 dmenu 一起使用。是否可以防止显示无法通过dmenu启动的程序?(例如顶部、ps、ls 等...) dmenu 1 个回答 Voted Best Answer jasonwryan 2018-01-05T14:19:58+08:002018-01-05T14:19:58+08:00 您可以修改dmenu_run以排除应用程序出现在dmenu. 例如,要 exclude a2x,向管道添加一个额外的进程: 从: #!/bin/sh dmenu_path | dmenu "$@" | ${SHELL:-"/bin/sh"} & 至: #!/bin/sh dmenu_path | awk '!/a2x/' | dmenu "$@" | ${SHELL:-"/bin/sh"} & 如果您想排除多个应用程序,您可以使用一个excludes文件: dmenu_path | grep -v -f /path/to/dmenu_excludes | dmenu "$@" | ${SHELL:-"/bin/sh"} &
您可以修改
dmenu_run
以排除应用程序出现在dmenu
. 例如,要 excludea2x
,向管道添加一个额外的进程:从:
至:
如果您想排除多个应用程序,您可以使用一个
excludes
文件: