|
NAMEjgmenututorial - A step-by-step tutorial to jgmenuINTRODUCTIONThis tutorial aims to explain the usage of jgmenu through a set of lessons.TABLE OF CONTENTS
Lesson 1 - Get startedAfter installing jgmenu, start the menu by running the following command
You should see a Linux/BSD system menu showing installed applications. See lesson 7 for further details. Create a config file (~/.config/jgmenu/jgmenurc) by running
Full details of config options are covered in jgmenu(1) (jgmenu.1.html). By entering the interactive mode and then selecting `t', you can try some pre-defined templates/themes.
There are a small number of configuration options which may need manual intervention in order for jgmenu to display correctly on your system.
Lesson 2 - ArchitectureThe design of jgmenu is very modular, providing a lot of flexibility in how it is used.When jgmenu is started, two processes are run to produce the menu.
The first process (csv-generator) produces the menu content, whereas the second generates the graphical menu. jgmenu_run(1) (jgmenu_run.1.html) is a multi-purpose wrapper script which does the following is pseudo code:
This makes it suitable for using with panels and keyboard shortcuts. Lesson 3 - Scripting with jgmenuFrom this point onwards, it is assumed that you understand basic shell usage including re-direction (e.g. <, >) and piping (e.g. |).The syntax below (here-document) is used to denote the creation of a text file from whatever is between the EOFs. You can of course use your favourite text editor instead.
There are many ways to run jgmenu. In lesson 1, you saw jgmenu as a long-running application. As we go through the next few lessons we will run jgmenu as a short-lived applications. This means that it starts from scratch every time it is called. So let's get back to basics. Try the following:
If you have not got used to the here-document syntax yet, it just means that you put the words “xterm” and “firefox” in a text file (which you can of course do using a text editor). Then run either of the following
The option --simple make jgmenu short-lived and reads menu items from stdin. The option --icon-size=0, disables icons (i.e. it does not just display them at zero size, it simply does not load them) The command line argument --vsimple is the same as --simple, but also disables icons and ignores jgmenurc (if it exists). If you want a menu to be launched by a single script, you could construct it like this:
Lesson 4 - DescriptionsAs you saw in the previous example, each line fed to stdin becomes a menu item. Any line containing two fields separated by a comma is parsed as description,command. Consider the following CSV menu data:
This lets you give a more meaningful description to each menu item. Lesson 5 - IconsTo display icons, you need to populate the third field. By default, jgmenu will obtain the icon theme from xsettings (if it is running) or tint2rc (if it exists). When running with the –simple argument, make sure that icon_theme is set to something sensible in your $HOME/.config/jgmenu/jgmenurc. Consider the following CSV menu data:
In the third field you can also specify the full path if you wish. Lesson 6 - SubmenusSo far we have looked at producing a single “root” menu only. jgmenu understands a small amount of markup and enables submenus by ^tag() and ^checkout(). Try this:
In pseudo-code, build your CSV file as follows:
^root() can be used instead of ^checkout() in order to open the submenu in the parent window. Lesson 7 - XDG Application MenusXDG (freedesktop.org) have defined a Linux/BSD Desktop Menu Specification which is followed by the big Desktop Environments. See menu-spec (http://specifications.freedesktop.org/menu-spec/latest/) for further details. In brief, there are three types of files which define an XDG menu:
Most desktop applications provided their own associated .desktop files, whereas .menu and .directory files are supplied by menu packages, such as libmenu-cache (LXDE) and libcargon (XFCE). The jgmenu core module jgmenu-apps(1) (jgmenu-apps.1.html) provides a system menu based on .desktop files and built-in schema data or a specified schema file, rather than system .menu and .directory files. Whilst this deviates from XDG menu spec, it is much simpler to understand and tweak. It also avoids reliance on menu packages. For strict XDG compliance, the optional module jgmenu-lx(1) (jgmenu-lx.1.html) can be used. See Lesson 10 for generic instructions on modules. Lesson 8 - Config OptionsIn lesson 1 we discussed config options position_mode, menu_margin_x, menu_margin_y, menu_halign and menu_valign.Here follow a few more options you may wish to explore. For full details, see jgmenu(1) (jgmenu.1.html). Rofi style:
Synchronize colours, font and icons with tint2 panel
Lesson 9 - Apprend/Prepend and SeparatorsWhen using apps, pmenu or lx, you can add menu items to the top and bottom of the root menu by editing append.csv and/or prepend.csv in ~/.config/jgmenu. For example, try the following:prepend.csv
append.csv
In these example we have used the markup ^sep(), which inserts a horizontal separator line. Similarly, ^sep(foo) inserts a text separator displaying “foo” Lesson 10 - CSV generatorsIn previous lessons, we introduced the apps, lx and pmenu. These modules are referred to as “CSV generators” and are invoked as follows:
Built-in “CSV generators” include: apps and ob Optional “CSV generators” include: lx and pmenu They are documented by a man page or a simple –help message.
Here follow some examples of how they can be used. Specify CSV generator in the config file by setting csv_cmd in ~/.config/jgmenu/jgmenurc
Specify CSV generator on the command line
Pipe the CSV output to jgmenu (using --simple to read from stdin)
Create a pipemenu using ^pipe() markup. Consider this example
Lesson 11 - Searchjgmenu has search support, which can be invoked by just typing when the menu is open.A search box can be inserted using widgets. For example, add this to ~/.config/jgmenu/prepend.csv:
Make sure you adjust menu padding accordingly, for example
A search can also be invoked by associating a widget with a ^filter() command. AUTHORSJohan Malm.
Visit the GSP FreeBSD Man Page Interface. |