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.
 
 
 
 
 
 

95 lines
2.5 KiB

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