Forrest logo
back to context overview

dmenu

List of commands for dmenu:

  • dmenu:tldr:2a8ea dmenu: Launch dmenu on a specific monitor.
    $ ls | dmenu -m ${1}
    try on your machine
    explain 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}" | dmenu
    try on your machine
    explain 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 machine
    explain this command
  • dmenu:tldr:a7aa4 dmenu: Display a menu of the output of the `ls` command.
    $ ${ls} | dmenu
    try on your machine
    explain this command
  • dmenu:tldr:f1ad8 dmenu: Display dmenu at the bottom of the screen.
    $ ls | dmenu -b
    try on your machine
    explain this command
back to context overview