My dmenu build
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

104 lines
2.7 KiB

  1. .TH DMENU 1 dmenu\-VERSION
  2. .SH NAME
  3. dmenu \- dynamic menu
  4. .SH SYNOPSIS
  5. .B dmenu
  6. .RB [ \-i ]
  7. .RB [ \-b ]
  8. .RB [ \-l " <lines>"]
  9. .RB [ \-fn " <font>"]
  10. .RB [ \-nb " <color>"]
  11. .RB [ \-nf " <color>"]
  12. .RB [ \-p " <prompt>"]
  13. .RB [ \-sb " <color>"]
  14. .RB [ \-sf " <color>"]
  15. .RB [ \-v ]
  16. .SH DESCRIPTION
  17. .SS Overview
  18. dmenu is a generic menu for X, originally designed for
  19. .BR dwm (1).
  20. It manages huge amounts (up to 10.000 and more) of user defined menu items
  21. efficiently.
  22. .SS Options
  23. .TP
  24. .B \-i
  25. makes dmenu match menu entries case insensitively.
  26. .TP
  27. .B \-b
  28. defines that dmenu appears at the bottom.
  29. .TP
  30. .B \-l <lines>
  31. activates vertical list mode.
  32. The given number of lines will be displayed. Window height will get adjusted.
  33. .TP
  34. .B \-fn <font>
  35. defines the font.
  36. .TP
  37. .B \-nb <color>
  38. defines the normal background color (#RGB, #RRGGBB, and color names are supported).
  39. .TP
  40. .B \-nf <color>
  41. defines the normal foreground color (#RGB, #RRGGBB, and color names are supported).
  42. .TP
  43. .B \-p <prompt>
  44. defines a prompt to be displayed before the input area.
  45. .TP
  46. .B \-sb <color>
  47. defines the selected background color (#RGB, #RRGGBB, and color names are supported).
  48. .TP
  49. .B \-sf <color>
  50. defines the selected foreground color (#RGB, #RRGGBB, and color names are supported).
  51. .TP
  52. .B \-v
  53. prints version information to standard output, then exits.
  54. .SH USAGE
  55. dmenu reads a list of newline-separated items from standard input and creates a
  56. menu. When the user selects an item or enters any text and presses Return, his/her
  57. choice is printed to standard output and dmenu terminates.
  58. .P
  59. dmenu is completely controlled by the keyboard. The following keys are recognized:
  60. .TP
  61. .B Any printable character
  62. Appends the character to the text in the input field. This works as a filter:
  63. only items containing this text will be displayed.
  64. .TP
  65. .B Left/Right (Up/Down) (Mod1\-h/Mod1\-l)
  66. Select the previous/next item.
  67. .TP
  68. .B PageUp/PageDown (Mod1\-k/Mod1\-j)
  69. Select the first item of the previous/next 'page' of items.
  70. .TP
  71. .B Home/End (Mod1\-g/Mod1\-G)
  72. Select the first/last item.
  73. .TP
  74. .B Tab (Control\-i)
  75. Copy the selected item to the input field.
  76. .TP
  77. .B Return (Control\-j)
  78. Confirm selection and quit (print the selected item to standard output). Returns
  79. .B 0
  80. on termination.
  81. .TP
  82. .B Shift\-Return (Control\-Shift\-j)
  83. Confirm selection and quit (print the text in the input field to standard output).
  84. Returns
  85. .B 0
  86. on termination.
  87. .TP
  88. .B Escape (Control\-bracketleft)
  89. Quit without selecting an item. Returns
  90. .B 1
  91. on termination.
  92. .TP
  93. .B Backspace (Control\-h)
  94. Remove a character from the input field.
  95. .TP
  96. .B Control\-u
  97. Remove all characters from the input field.
  98. .TP
  99. .B Control\-w
  100. Remove all characters of current word from the input field.
  101. .SH SEE ALSO
  102. .BR dwm (1),
  103. .BR wmii (1) .