-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjgmenu-apps.1.html
More file actions
230 lines (204 loc) · 4.49 KB
/
jgmenu-apps.1.html
File metadata and controls
230 lines (204 loc) · 4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
<!DOCTYPE html>
<html lang=en>
<head>
<title>jgmenu</title>
<meta charset="utf-8" />
<meta name="description" content="jgmenu"/>
<meta name="viewport" content="width=device-width">
<style>
body {
overflow-y: scroll;
font-family: monospace;
background-color: #fff;
color: black;
max-width: 600px;
padding: 20px;
line-height: 1.5;
word-wrap: break-word;
margin: auto;
}
pre {
padding: 20px;
white-space: pre-wrap;
border: 1px dotted gray;
display: block;
margin: 20px auto;
background-color: #eee;
color: #111;
}
code {
font-family: monospace;
background-color: #eee;
color: #111;
}
img {
margin: 20px auto;
max-width: 100%;
}
table {
border-collapse: collapse;
}
table,th,td {
border: 1px solid black;
}
th,td {
padding: 15px;
text-align: left;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
text-decoration: none;
}
h1, h2, h3, h4, h5 {
font-family: monospace;
font-weight: bold;
}
h1 {
font-size: 130%;
}
h2 {
font-size: 110%;
}
h3 {
font-size: 95%;
}
h4 {
font-size: 90%;
font-style: italic;
}
h5 {
font-size: 90%;
font-style: italic;
}
dt code {
font-weight: bold;
}
dd p {
margin-top: 0;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-162822348-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-162822348-1');
</script>
</head>
<body>
<main>
<a href='index.html'>Home</a><br> JGMENU-APPS(1)<h1 id="name">NAME</h1>
<p>jgmenu-apps - generate jgmenu flavoured CSV menu data</p>
<h1 id="synopsis">SYNOPSIS</h1>
<p><code>jgmenu_run apps</code>
[--help] [--no-append] [--no-prepend]</p>
<h1 id="description">DESCRIPTION</h1>
<p><code>jgmenu_run apps</code> generates jgmenu flavoured CSV menu data
for system applications using built-in schema data or a specified schema
file to map categories to directories, rather than system .directory
files.</p>
<p>A schema is searched for in the following locations and order:</p>
<ul>
<li><code>$XDG_CONFIG_HOME/jgmenu/schema</code><br />
</li>
<li><code>$HOME/.config/jgmenu/schema</code><br />
</li>
<li><code>$XDG_CONFIG_DIRS/jgmenu/schema</code><br />
</li>
<li><code>/etc/xdg/jgmenu/schema</code></li>
</ul>
<p>The root menu is appended and/or prepended by the contents of the
files <code>$HOME/.config/jgmenu/{append,prepend}.csv</code> if they
exist.</p>
<p>Applications which do not belong in any of the categories in the
schema file, are placed in ‘Other’ (which is the one with no Categories=
field)</p>
<p>Example schema file:</p>
<pre><code>Name=Accessories
Name[sv]=Tillbehör
Icon=applications-accessories
Categories=Accessibility;Core;Utility;
Name=Development
Name[sv]=Utveckling
Icon=applications-development
Categories=Development;
Name=Education
Name[sv]=Utbildning
Icon=applications-science
Categories=Education;
Name=Games
Name[sv]=Spel
Icon=applications-games
Categories=Game;
Name=Graphics
Name[sv]=Grafik
Icon=applications-graphics
Categories=Graphics;
Name=Multimedia
Name[sv]=Multimedia
Icon=applications-multimedia
Categories=Audio;Video;AudioVideo;
Name=Internet
Name[sv]=Internet
Icon=applications-internet
Categories=Network;
Name=Office
Name[sv]=Kontorsprogram
Icon=applications-office
Categories=Office;
Name=Other
Name[sv]=Övrigt
Icon=applications-other
Name=Settings
Name[sv]=Inställningar
Icon=preferences-desktop
Categories=Settings;Screensaver;
Name=System
Name[sv]=System
Icon=applications-system
Categories=Emulator;System;</code></pre>
<h1 id="options">OPTIONS</h1>
<dl>
<dt><code>--help</code></dt>
<dd>
Show help message and exit
</dd>
<dt><code>--no-prepend</code></dt>
<dd>
Do not output ~/.config/jgmenu/prepend.csv before root menu
</dd>
<dt><code>--no-append</code></dt>
<dd>
Do not output ~/.config/jgmenu/append.csv after root menu
</dd>
</dl>
<h1 id="environment-variables">ENVIRONMENT VARIABLES</h1>
<dl>
<dt><code>JGMENU_SINGLE_WINDOW</code></dt>
<dd>
<p>If set, <code>^checkout()</code> items will be replaced by
<code>^root()</code></p>
</dd>
<dt><code>JGMENU_NO_DIRS</code></dt>
<dd>
<p>If set, applications will be listed without a directory structure</p>
</dd>
<dt><code>JGMENU_NO_PEND</code></dt>
<dd>
<p>Do not read append.csv or prepend.csv</p>
</dd>
<dt><code>JGMENU_NAME_FORMAT</code></dt>
<dd>
<p>See <code>csv_name_format</code> in jgmenu(1)</p>
</dd>
<dt><code>JGMENU_NO_DUPLICATES</code></dt>
<dd>
<p>See <code>csv_no_duplicates</code> in jgmenu(1)</p>
</dd>
<dt><code>JGMENU_I18N</code></dt>
<dd>
<p>See <code>csv_i18n</code> in jgmenu(1) and jgmenu-i18n(1)</p>
</dd>
</dl>
</main>
</body>
</html>