A mirror of phillbush's xmenu.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
12345678910111213141516171819202122232425262728
  1. xmenu
  2. Xmenu is a menu utility for X.
  3. Xmenu receives a menu specification in stdin, shows a menu for the user
  4. to select one of the options, and outputs the option selected to stdout.
  5. § Installation
  6. In order to build xmenu you need the Xlib header files.
  7. Edit config.mk to match your local setup (xmenu is installed into the
  8. /usr/local prefix by default). Then enter the following command to
  9. build and install xmenu (if necessary as root).
  10. make clean install
  11. § Running xmenu
  12. xmenu receives as input a menu specification where each line is a menu
  13. entry. Each line can be indented with tabs to represent nested menus.
  14. Each line is made out of a label and a command separated by any number
  15. of tabs. Lines without labels are menu separators.
  16. See the script ./xmenu.sh for an example of how xmenu can be used to
  17. draw a simple menu with submenus and separators.
  18. Read the manual for more information on running xmenu.