
dmenu
List of commands for dmenu:
-
dmenu:tldr:2a8ea dmenu: Launch dmenu on a specific monitor.$ ls | dmenu -m ${1}try on your machineexplain this command
-
dmenu:tldr:4a007 dmenu: Display a menu with custom items separated by a new line (`\n`).$ echo -e "${red}\n${green}\n${blue}" | dmenutry on your machineexplain this command
-
dmenu:tldr:9c4a9 dmenu: Let the user choose between multiple items and save the selected one to a file.$ echo -e "${red}\n${green}\n${blue}" | dmenu > ${color-txt}try on your machineexplain this command
-
dmenu:tldr:a7aa4 dmenu: Display a menu of the output of the `ls` command.$ ${ls} | dmenutry on your machineexplain this command
-
dmenu:tldr:f1ad8 dmenu: Display dmenu at the bottom of the screen.$ ls | dmenu -btry on your machineexplain this command