File: menu.html

package info (click to toggle)
clfswm 20111015.git51b0a02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 1,624 kB
  • sloc: lisp: 14,797; sh: 302; makefile: 17
file content (2903 lines) | stat: -rw-r--r-- 61,021 bytes parent folder | download | duplicates (2)
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
<html>
  <head>
    <title>
      CLFSWM Menu
    </title>
  </head>
  <body>
    <h1>
      <a name="top">
        CLFSWM Menu
      </a>
    </h1>
    <p>
      Here is the map of the CLFSWM menu:
      (By default it is bound on second-mode + m)
    </p>
    <h3>
      <a name="MAIN"></a><a href="#Top">Main</a>
    </h3>
    <p>
      F1: <a href="#HELP-MENU">< Help menu ></a>
    </p>
    <p>
      d: <a href="#STANDARD-MENU">< Standard menu ></a>
    </p>
    <p>
      c: <a href="#CHILD-MENU">< Child menu ></a>
    </p>
    <p>
      f: <a href="#FRAME-MENU">< Frame menu ></a>
    </p>
    <p>
      w: <a href="#WINDOW-MENU">< Window menu ></a>
    </p>
    <p>
      s: <a href="#SELECTION-MENU">< Selection menu ></a>
    </p>
    <p>
      n: <a href="#ACTION-BY-NAME-MENU">< Action by name menu ></a>
    </p>
    <p>
      u: <a href="#ACTION-BY-NUMBER-MENU">< Action by number menu ></a>
    </p>
    <p>
      y: <a href="#UTILITY-MENU">< Utility menu ></a>
    </p>
    <p>
      o: <a href="#CONFIGURATION-MENU">< Configuration menu ></a>
    </p>
    <p>
      m: <a href="#CLFSWM-MENU">< CLFSWM menu ></a>
    </p>
    <hr>
    <h3>
      <a name="HELP-MENU"></a><a href="#MAIN">Help-Menu</a>
    </h3>
    <p>
      a: Show the first aid kit key binding
    </p>
    <p>
      h: Show all key binding
    </p>
    <p>
      b: Show the main mode binding
    </p>
    <p>
      s: Show the second mode key binding
    </p>
    <p>
      r: Show the circulate mode key binding
    </p>
    <p>
      e: Show the expose window mode key binding
    </p>
    <p>
      c: Help on clfswm corner
    </p>
    <p>
      g: Show all configurable variables
    </p>
    <p>
      d: Show the current time and date
    </p>
    <p>
      p: Show current processes sorted by CPU usage
    </p>
    <p>
      m: Show current processes sorted by memory usage
    </p>
    <p>
      v: Show the current CLFSWM version
    </p>
    <hr>
    <h3>
      <a name="STANDARD-MENU"></a><a href="#MAIN">Standard-Menu</a>
    </h3>
    <p>
      a: <a href="#TEXTEDITOR">< TEXTEDITOR ></a>
    </p>
    <p>
      b: <a href="#FILEMANAGER">< FILEMANAGER ></a>
    </p>
    <p>
      c: <a href="#WEBBROWSER">< WEBBROWSER ></a>
    </p>
    <p>
      d: <a href="#AUDIOVIDEO">< AUDIOVIDEO ></a>
    </p>
    <p>
      e: <a href="#AUDIO">< AUDIO ></a>
    </p>
    <p>
      f: <a href="#VIDEO">< VIDEO ></a>
    </p>
    <p>
      g: <a href="#DEVELOPMENT">< DEVELOPMENT ></a>
    </p>
    <p>
      h: <a href="#EDUCATION">< EDUCATION ></a>
    </p>
    <p>
      i: <a href="#GAME">< GAME ></a>
    </p>
    <p>
      j: <a href="#GRAPHICS">< GRAPHICS ></a>
    </p>
    <p>
      k: <a href="#NETWORK">< NETWORK ></a>
    </p>
    <p>
      l: <a href="#OFFICE">< OFFICE ></a>
    </p>
    <p>
      m: <a href="#SETTINGS">< SETTINGS ></a>
    </p>
    <p>
      n: <a href="#SYSTEM">< SYSTEM ></a>
    </p>
    <p>
      o: <a href="#UTILITY">< UTILITY ></a>
    </p>
    <p>
      p: <a href="#TERMINALEMULATOR">< TERMINALEMULATOR ></a>
    </p>
    <p>
      q: <a href="#ARCHLINUX">< ARCHLINUX ></a>
    </p>
    <p>
      r: <a href="#SCREENSAVER">< SCREENSAVER ></a>
    </p>
    <hr>
    <h3>
      <a name="TEXTEDITOR"></a><a href="#STANDARD-MENU">Texteditor</a>
    </h3>
    <p>
      a: Emacs Text Editor - Edit text
    </p>
    <p>
      b: gVim - GTK2 enhanced vim text editor
    </p>
    <p>
      c: Kate
    </p>
    <p>
      d: Snippets datafile editor
    </p>
    <p>
      e: KWrite
    </p>
    <p>
      f: Mousepad - Simple text editor
    </p>
    <p>
      g: PDF Editor
    </p>
    <p>
      h: Xfw - A simple text editor for Xfe
    </p>
    <hr>
    <h3>
      <a name="FILEMANAGER"></a><a href="#STANDARD-MENU">Filemanager</a>
    </h3>
    <p>
      a: Open Folder with Thunar - Open the specified folders in Thunar
    </p>
    <p>
      b: Thunar File Manager - Browse the filesystem with the file manager
    </p>
    <p>
      c: Dolphin
    </p>
    <p>
      d: Krusader
    </p>
    <p>
      e: File Manager - Configure the Thunar file manager
    </p>
    <p>
      f: ROX Filer - ROX Filer
    </p>
    <p>
      g: Worker - File manager for X.
    </p>
    <p>
      h: Xfe - A lightweight file manager for X Window
    </p>
    <hr>
    <h3>
      <a name="WEBBROWSER"></a><a href="#STANDARD-MENU">Webbrowser</a>
    </h3>
    <p>
      a: Arora - Browse the World Wide Web
    </p>
    <p>
      b: Chromium - Access the Internet
    </p>
    <p>
      c: Conkeror - Conkeror is a Mozilla-based web browser whose design is inspired by GNU Emacs
    </p>
    <p>
      d: Epiphany - Browse the web
    </p>
    <p>
      e: Firefox
    </p>
    <p>
      f: IcedTea Web Start - IcedTea Application Launcher
    </p>
    <p>
      g: Konqueror
    </p>
    <p>
      h: rekonq
    </p>
    <p>
      i: Links
    </p>
    <p>
      j: Midori - Lightweight web browser
    </p>
    <p>
      k: Opera - A fast and secure web browser and Internet suite
    </p>
    <hr>
    <h3>
      <a name="AUDIOVIDEO"></a><a href="#STANDARD-MENU">Audiovideo</a>
    </h3>
    <p>
      a: AcidRip DVD Ripper - DVD Ripper
    </p>
    <p>
      b: Ardour - Multitrack hard disk recorder
    </p>
    <p>
      c: Ario - Client application to mpd
    </p>
    <p>
      d: Audacity - Record and edit audio files
    </p>
    <p>
      e: Beep Media Player - Play music
    </p>
    <p>
      f: Brasero - Create and copy CDs and DVDs
    </p>
    <p>
      g: Cinelerra  - Video Editor
    </p>
    <p>
      h: dvd::rip - DVD Ripper and Encoder - Backup and compression utility for DVDs
    </p>
    <p>
      i: Freevo - Home theatre
    </p>
    <p>
      j: Camelot - Gmerlin webcam application
    </p>
    <p>
      k: Gmerlin KBD - Configure the Gmerlin keyboard daemon
    </p>
    <p>
      l: Gmerlin player - Multiformat mediaplayer
    </p>
    <p>
      m: Gmerlin recorder - Audio/video recorder
    </p>
    <p>
      n: Gmerlin transcoder - Gmerlin multimedia transcoder
    </p>
    <p>
      o: Gmerlin visualizer - Run visualization plugins
    </p>
    <p>
      p: Gnome Music Player Client - A gnome frontend for the mpd daemon
    </p>
    <p>
      q: Sound Recorder - Record sound clips
    </p>
    <p>
      r: Grip - CD player/ripper
    </p>
    <p>
      s: gtk-recordMyDesktop - Frontend for recordMyDesktop
    </p>
    <p>
      t: Hydrogen Drum Machine - Create drum sequences
    </p>
    <p>
      u: Dragon Player
    </p>
    <p>
      v: JuK
    </p>
    <p>
      w: K3b - Disk writing program
    </p>
    <p>
      x: Kdenlive - Nonlinear video editor for KDE
    </p>
    <p>
      y: KMix
    </p>
    <p>
      z: KsCD
    </p>
    <p>
      0: Mixxx - A digital DJ interface
    </p>
    <p>
      1: MPlayer Media Player - Play movies and songs
    </p>
    <p>
      2: Open Movie Editor - Video Editor
    </p>
    <p>
      3: OpenShot Video Editor - Create and edit videos and movies
    </p>
    <p>
      4: QjackCtl
 - QjackCtl is a JACK Audio Connection Kit Qt GUI Interface
    </p>
    <p>
      5: qt-recordMyDesktop - Frontend for recordMyDesktop
    </p>
    <p>
      6: QT V4L2 test Utility - Allow testing Video4Linux devices
    </p>
    <p>
      7: Rhythmbox - Play and organize your music collection
    </p>
    <p>
      8: Rhythmbox - Play and organize your music collection
    </p>
    <p>
      9: SMPlayer - A great MPlayer front-end
    </p>
    <p>
      A: Enqueue in SMPlayer
    </p>
    <p>
      B: Sonata - An elegant GTK+ MPD client
    </p>
    <p>
      C: Audio CD Extractor - Copy music from your CDs
    </p>
    <p>
      D: Movie Player - Play movies and songs
    </p>
    <p>
      E: VLC media player - Read, capture, broadcast your multimedia streams
    </p>
    <p>
      F: XBMC Media Center - Manage and view your media 
    </p>
    <p>
      G: Mixer - Audio mixer for the Xfce Desktop Environment
    </p>
    <p>
      H: XMMS - X Multimedia System
    </p>
    <p>
      I: zynaddsubfx - An opensource software synthesizer
    </p>
    <hr>
    <h3>
      <a name="AUDIO"></a><a href="#STANDARD-MENU">Audio</a>
    </h3>
    <p>
      a: Ardour - Multitrack hard disk recorder
    </p>
    <p>
      b: Ario - Client application to mpd
    </p>
    <p>
      c: Audacity - Record and edit audio files
    </p>
    <p>
      d: Gmerlin plugin configurator - Configure gmerlin plugins
    </p>
    <p>
      e: Sound Recorder - Record sound clips
    </p>
    <p>
      f: Hydrogen Drum Machine - Create drum sequences
    </p>
    <p>
      g: KMix
    </p>
    <p>
      h: Mixxx - A digital DJ interface
    </p>
    <p>
      i: MPlayer Media Player - Play movies and songs
    </p>
    <p>
      j: QjackCtl
 - QjackCtl is a JACK Audio Connection Kit Qt GUI Interface
    </p>
    <p>
      k: Audio CD Extractor - Copy music from your CDs
    </p>
    <p>
      l: Mixer - Audio mixer for the Xfce Desktop Environment
    </p>
    <hr>
    <h3>
      <a name="VIDEO"></a><a href="#STANDARD-MENU">Video</a>
    </h3>
    <p>
      a: Ardour - Multitrack hard disk recorder
    </p>
    <p>
      b: dvd::rip - DVD Ripper and Encoder - Backup and compression utility for DVDs
    </p>
    <p>
      c: MPlayer Media Player - Play movies and songs
    </p>
    <p>
      d: OpenShot Video Editor - Create and edit videos and movies
    </p>
    <p>
      e: SMPlayer - A great MPlayer front-end
    </p>
    <p>
      f: Enqueue in SMPlayer
    </p>
    <p>
      g: Movie Player - Play movies and songs
    </p>
    <p>
      h: XBMC Media Center - Manage and view your media 
    </p>
    <hr>
    <h3>
      <a name="DEVELOPMENT"></a><a href="#STANDARD-MENU">Development</a>
    </h3>
    <p>
      a: CMake - Cross-platform buildsystem
    </p>
    <p>
      b: Qt Assistant - Shows Qt documentation and examples
    </p>
    <p>
      c: Data Display Debugger - Graphical debugger frontend
    </p>
    <p>
      d: Qt Designer - Design GUIs for Qt applications
    </p>
    <p>
      e: DrRacket - DrRacket is an interactive, integrated, graphical programming environment for the Racket programming languages.
    </p>
    <p>
      f: EAGLE Light Edition
    </p>
    <p>
      g: Eeschema - Design a printed circuit board.
    </p>
    <p>
      h: Emacs Text Editor - Edit text
    </p>
    <p>
      i: Factor - Factor is a general purpose, dynamically typed, stack-based programming language
    </p>
    <p>
      j: Java Monitoring and Management Console
    </p>
    <p>
      k: Java VisualVM
    </p>
    <p>
      l: OpenJDK Monitoring & Management Console - Monitor and manage OpenJDK applications
    </p>
    <p>
      m: Akonadi Console - Akonadi Management and Debugging Console
    </p>
    <p>
      n: Cervisia
    </p>
    <p>
      o: KAppTemplate
    </p>
    <p>
      p: KBugBuster
    </p>
    <p>
      q: KCachegrind - Visualization of Performance Profiling Data
    </p>
    <p>
      r: KDE Source Builder - Builds the KDE Platform and associated software from its source code. A command-line only program.
    </p>
    <p>
      s: KImageMapEditor
    </p>
    <p>
      t: KLinkStatus
    </p>
    <p>
      u: Kompare
    </p>
    <p>
      v: KUIViewer
    </p>
    <p>
      w: Lokalize
    </p>
    <p>
      x: Umbrello
    </p>
    <p>
      y: KiCad - Design a printed circuit board.
    </p>
    <p>
      z: Qt Linguist - Add translations to Qt applications
    </p>
    <p>
      0: OpenJDK Policy Tool - Manage OpenJDK policy files
    </p>
    <hr>
    <h3>
      <a name="EDUCATION"></a><a href="#STANDARD-MENU">Education</a>
    </h3>
    <p>
      a: Avogadro - Advanced molecular editor
    </p>
    <p>
      b: Circle and Ruler - Geometry program
    </p>
    <p>
      c: DrGeo
    </p>
    <p>
      d: DrRacket - DrRacket is an interactive, integrated, graphical programming environment for the Racket programming languages.
    </p>
    <p>
      e: GeoGebra
 - Create interactive mathematical constructions and applets. 
    </p>
    <p>
      f: geometria
    </p>
    <p>
      g: Blinken - A memory enhancement game
    </p>
    <p>
      h: Cantor
    </p>
    <p>
      i: KAlgebra - Math Expression Solver and Plotter
    </p>
    <p>
      j: KAlgebra Mobile - Pocket Math Expression Solver and Plotter
    </p>
    <p>
      k: Kalzium - KDE Periodic Table of Elements
    </p>
    <p>
      l: Kanagram - KDE Letter Order Game
    </p>
    <p>
      m: KBruch - Practice exercises with fractions
    </p>
    <p>
      n: KGeography - A Geography Learning Program
    </p>
    <p>
      o: KHangMan - KDE Hangman Game
    </p>
    <p>
      p: Kig - Explore Geometric Constructions
    </p>
    <p>
      q: Kiten - Japanese Reference and Study Tool
    </p>
    <p>
      r: KLettres - a KDE program to learn the alphabet
    </p>
    <p>
      s: KmPlot - Function Plotter
    </p>
    <p>
      t: KStars - Desktop Planetarium
    </p>
    <p>
      u: KTouch
    </p>
    <p>
      v: KTurtle
    </p>
    <p>
      w: KWordQuiz - A flashcard and vocabulary learning program
    </p>
    <p>
      x: Marble
    </p>
    <p>
      y: Parley
    </p>
    <p>
      z: Rocs - Graph Theory Tool for Professors and Students.
    </p>
    <p>
      0: Step - Simulate physics experiments
    </p>
    <p>
      1: Oregano electrical engineering tool - Schematic capture and simulation of electronic circuits
    </p>
    <p>
      2: QtOctave - GUI for GNU Octave
    </p>
    <p>
      3: VYM - View Your Mind
    </p>
    <p>
      4: wxMaxima - Perform symbolic and numeric calculations using Maxima
    </p>
    <p>
      5: Xcas Computer Algebra System - The swiss knife for mathematics
    </p>
    <hr>
    <h3>
      <a name="GAME"></a><a href="#STANDARD-MENU">Game</a>
    </h3>
    <p>
      a: 0 A.D. Editor
    </p>
    <p>
      b: 0 A.D.
    </p>
    <p>
      c: AssaultCube
    </p>
    <p>
      d: Astromenace - Space shooter
    </p>
    <p>
      e: Blobby Volley 2
    </p>
    <p>
      f: Bloboats - A boat racing game reminiscent of Elasto Mania and X-Moto
    </p>
    <p>
      g: BomberClone - Atomic Bomberman clone
    </p>
    <p>
      h: Chromium B.S.U. - Scrolling space shooter
    </p>
    <p>
      i: DreamChess
    </p>
    <p>
      j: DROD - Simple puzzle game.
    </p>
    <p>
      k: eBoard
    </p>
    <p>
      l: Einstein - Einstein puzzle
    </p>
    <p>
      m: Extreme Tux Racer - Open source racing game featuring Tux the Linux Penguin. 
    </p>
    <p>
      n: Flobopuyo - A remake of the famous PuyoPuyo
    </p>
    <p>
      o: Foobillard - A 3D billiards game using OpenGL
    </p>
    <p>
      p: Frasse - Frasse and the Peas of Kejick adventure game
    </p>
    <p>
      q: Frogatto - Old-school 2D platformer
    </p>
    <p>
      r: gbrainy - Play games that challenge your logic, verbal, calculation and memory abilities
    </p>
    <p>
      s: GGoban - Play go and review game records
    </p>
    <p>
      t: glChess
    </p>
    <p>
      u: GLTron - Lightcycle game with a nice 3D perspective.
    </p>
    <p>
      v: Hedgewars - Worms style game
    </p>
    <p>
      w: Hex-a-Hop - Hexagonal Tile-based Puzzle Game
    </p>
    <p>
      x: KGoldrunner - A game of action and puzzle-solving
    </p>
    <p>
      y: AMOR
    </p>
    <p>
      z: Blinken - A memory enhancement game
    </p>
    <p>
      0: Bomber
    </p>
    <p>
      1: Bovo
    </p>
    <p>
      2: Granatier
    </p>
    <p>
      3: Kanagram - KDE Letter Order Game
    </p>
    <p>
      4: Kapman - Eat pills escaping ghosts
    </p>
    <p>
      5: KAtomic
    </p>
    <p>
      6: Naval Battle
    </p>
    <p>
      7: KBlackBox
    </p>
    <p>
      8: KBlocks
    </p>
    <p>
      9: KBounce
    </p>
    <p>
      A: KBreakOut
    </p>
    <p>
      B: KSnake
    </p>
    <p>
      C: KDiamond
    </p>
    <p>
      D: KFourInLine
    </p>
    <p>
      E: KHangMan - KDE Hangman Game
    </p>
    <p>
      F: Kigo
    </p>
    <p>
      G: Killbots
    </p>
    <p>
      H: Kiriki
    </p>
    <p>
      I: KJumpingCube
    </p>
    <p>
      J: Klickety
    </p>
    <p>
      K: Kolor Lines
    </p>
    <p>
      L: KMahjongg
    </p>
    <p>
      M: KMines
    </p>
    <p>
      N: KNetWalk
    </p>
    <p>
      O: Knights
    </p>
    <p>
      P: Kolf
    </p>
    <p>
      Q: Kollision - A simple ball dodging game
    </p>
    <p>
      R: Konquest
    </p>
    <p>
      S: KPatience
    </p>
    <p>
      T: KReversi
    </p>
    <p>
      U: SameGame
    </p>
    <p>
      V: Shisen-Sho
    </p>
    <p>
      W: KsirK
    </p>
    <p>
      X: KsirK Skin Editor
    </p>
    <p>
      Y: KSpaceDuel
    </p>
    <p>
      Z: KSquares
    </p>
    <p>
      |: KSudoku - KSudoku, Sudoku game & more for KDE
    </p>
    <p>
      |: KSnakeDuel
    </p>
    <p>
      |: Potato Guy
    </p>
    <p>
      |: Kubrick
    </p>
    <p>
      |: LSkat
    </p>
    <p>
      |: Palapeli
    </p>
    <p>
      |: KoboDeluxe - An excellent 2D Shootem-up game.
    </p>
    <p>
      |: Maniadrive - An arcade car game on acrobatic tracks, with a quick and nervous gameplay
    </p>
    <p>
      |: mechtower(failsafe)
    </p>
    <p>
      |: mechtower
    </p>
    <p>
      |: Numpty Physics
    </p>
    <p>
      |: OpenArena - A Quake3-based FPS Game
    </p>
    <p>
      |: OpenTTD
    </p>
    <p>
      |: Pacdefence - Tower defence game.
    </p>
    <p>
      |: PainTown - Paintown is an open source fighting game in the same genre as Streets of Rage and Teenage Mutant Ninja Turtles.
    </p>
    <p>
      |: pouetChess - Play a game of chess, either against another player or against the AI
    </p>
    <p>
      |: Racer - Choose your car and race
    </p>
    <p>
      |: Racer - Choose your car and race
    </p>
    <p>
      |: Slime Volley - Unrealistic 2D volleyball simulation
    </p>
    <p>
      |: SolarWolf
    </p>
    <p>
      |: Spring - An open source RTS with similar gameplay to TA
    </p>
    <p>
      |: Stormbaan Coureur
    </p>
    <p>
      |: SuperTux 2 - Play a classic 2D platform game
    </p>
    <p>
      |: Supertuxkart - A kart racing game
    </p>
    <p>
      |: Trackballs - Simple game similar to the classical game Marble Madness
    </p>
    <p>
      |: Battle for Wesnoth - A fantasy turn-based strategy game
    </p>
    <p>
      |: Battle for Wesnoth Map Editor - A map editor for Battle for Wesnoth maps
    </p>
    <p>
      |: Wind and Water: Puzzle Battles - Arcade style puzzle game
    </p>
    <p>
      |: XBoard - An X Window System graphical chessboard
    </p>
    <p>
      |: Xmoto
    </p>
    <p>
      |: XSpaceWarp - Live long and prosper!
    </p>
    <p>
      |: Xut - Button football simulation
    </p>
    <p>
      |: Zelvici - Funny 2D platform game
    </p>
    <p>
      |: Zero Ballistics
    </p>
    <hr>
    <h3>
      <a name="GRAPHICS"></a><a href="#STANDARD-MENU">Graphics</a>
    </h3>
    <p>
      a: LibreOffice Draw
    </p>
    <p>
      b: Image Viewer
    </p>
    <p>
      c: Document Viewer - View multi-page documents
    </p>
    <p>
      d: Gcolor2 - Choose colours from palette or screen
    </p>
    <p>
      e: Geeqie - View and manage images
    </p>
    <p>
      f: PostScript Viewer - View PostScript files
    </p>
    <p>
      g: GNU Image Manipulation Program - Create images and edit photographs
    </p>
    <p>
      h: Image Viewer
    </p>
    <p>
      i: GQview - View and manage images
    </p>
    <p>
      j: gThumb - View and organize your images
    </p>
    <p>
      k: gThumb - View and organize your images
    </p>
    <p>
      l: GV
    </p>
    <p>
      m: Inkscape - Create and edit Scalable Vector Graphics images
    </p>
    <p>
      n: digiKam
    </p>
    <p>
      o: Gwenview - A simple image viewer
    </p>
    <p>
      p: KColorChooser
    </p>
    <p>
      q: KolourPaint
    </p>
    <p>
      r: KRuler
    </p>
    <p>
      s: KSnapshot
    </p>
    <p>
      t: Okular
    </p>
    <p>
      u: Okular
    </p>
    <p>
      v: Okular
    </p>
    <p>
      w: Okular
    </p>
    <p>
      x: Okular
    </p>
    <p>
      y: Okular
    </p>
    <p>
      z: Okular
    </p>
    <p>
      0: Okular
    </p>
    <p>
      1: Okular
    </p>
    <p>
      2: Okular
    </p>
    <p>
      3: Okular
    </p>
    <p>
      4: Okular
    </p>
    <p>
      5: Okular
    </p>
    <p>
      6: Okular
    </p>
    <p>
      7: Okular
    </p>
    <p>
      8: Okular
    </p>
    <p>
      9: showFoto - Manage your photographs like a professional with the power of open source
    </p>
    <p>
      A: MuPDF - PDF file viewer
    </p>
    <p>
      B: Xfig
    </p>
    <p>
      C: xgps - Display GPS information from a gpsd daemon
    </p>
    <p>
      D: xgpsspeed - Display GPS speed from a gpsd daemon
    </p>
    <p>
      E: XSane - Scanning - Acquire images from a scanner
    </p>
    <hr>
    <h3>
      <a name="NETWORK"></a><a href="#STANDARD-MENU">Network</a>
    </h3>
    <p>
      a: Arora - Browse the World Wide Web
    </p>
    <p>
      b: Epiphany Web Bookmarks - Browse and organize your bookmarks
    </p>
    <p>
      c: Avahi SSH Server Browser - Browse for Zeroconf-enabled SSH Servers
    </p>
    <p>
      d: Avahi VNC Server Browser - Browse for Zeroconf-enabled VNC Servers
    </p>
    <p>
      e: Chromium - Access the Internet
    </p>
    <p>
      f: Conkeror - Conkeror is a Mozilla-based web browser whose design is inspired by GNU Emacs
    </p>
    <p>
      g: Ekiga Softphone - Talk to and see people over the Internet
    </p>
    <p>
      h: Epiphany - Browse the web
    </p>
    <p>
      i: Mail Reader
    </p>
    <p>
      j: Web Browser
    </p>
    <p>
      k: Minefield - Safe Mode
    </p>
    <p>
      l: Minefield
    </p>
    <p>
      m: Firefox
    </p>
    <p>
      n: Gnaughty - Porn downloader
    </p>
    <p>
      o: Gwget Download Manager - Download files from the Internet
    </p>
    <p>
      p: JAP - JAP makes it possible to surf the internet anonymously and unobservably.
    </p>
    <p>
      q: Java Web Start
    </p>
    <p>
      r: IcedTea Web Start - IcedTea Application Launcher
    </p>
    <p>
      s: KMail
    </p>
    <p>
      t: KNode
    </p>
    <p>
      u: KPPP
    </p>
    <p>
      v: Akregator - A Feed Reader for KDE
    </p>
    <p>
      w: Blogilo
    </p>
    <p>
      x: KGet
    </p>
    <p>
      y: KNetAttach
    </p>
    <p>
      z: Konqueror
    </p>
    <p>
      0: Kopete - Instant Messenger
    </p>
    <p>
      1: KPPPLogview
    </p>
    <p>
      2: KRDC
    </p>
    <p>
      3: Krfb
    </p>
    <p>
      4: rekonq
    </p>
    <p>
      5: Links
    </p>
    <p>
      6: Midori - Lightweight web browser
    </p>
    <p>
      7: MLDonkey GUI - multi-protocol P2P program
    </p>
    <p>
      8: MultiGet - Multi thread download tools
    </p>
    <p>
      9: OpenArena Server - Run an OpenArena server
    </p>
    <p>
      A: Opera - A fast and secure web browser and Internet suite
    </p>
    <p>
      B: SeaMonkey internet suite
    </p>
    <p>
      C: Thunderbird - Mail & News Reader
    </p>
    <p>
      D: Transmission - Download and share files over BitTorrent
    </p>
    <p>
      E: Tucan Manager - Download and upload manager for hosting sites.
    </p>
    <p>
      F: unison - File synchronisation tool for X11
    </p>
    <p>
      G: LibreOffice Writer/Web
    </p>
    <p>
      H: Wicd - Manage Wired/Wireless Networks
    </p>
    <p>
      I: Zenmap (as root)
    </p>
    <p>
      J: Zenmap
    </p>
    <hr>
    <h3>
      <a name="OFFICE"></a><a href="#STANDARD-MENU">Office</a>
    </h3>
    <p>
      a: AbiWord
    </p>
    <p>
      b: LibreOffice Base
    </p>
    <p>
      c: LibreOffice Calc
    </p>
    <p>
      d: ePDFViewer - Lightweight PDF document viewer
    </p>
    <p>
      e: Evolution - Manage your email, contacts and schedule
    </p>
    <p>
      f: FreeMind
    </p>
    <p>
      g: Orage Globaltime - Show clocks from different countries
    </p>
    <p>
      h: Gnumeric - Calculation, Analysis, and Visualization of Information
    </p>
    <p>
      i: GV
    </p>
    <p>
      j: LibreOffice Impress
    </p>
    <p>
      k: Kontact
    </p>
    <p>
      l: KAddressBook
    </p>
    <p>
      m: KOrganizer - Calendar and Scheduling Program
    </p>
    <p>
      n: KTimeTracker
    </p>
    <p>
      o: KWord - Write text documents
    </p>
    <p>
      p: Lokalize
    </p>
    <p>
      q: Okular
    </p>
    <p>
      r: LibreOffice 3.3 Math
    </p>
    <p>
      s: LibreOffice 3.3 Printer Administration
    </p>
    <p>
      t: LibreOffice 3.3 
    </p>
    <p>
      u: LibreOffice 3.3 Writer
    </p>
    <p>
      v: Lyx - Latex WYSIWYM Editor
    </p>
    <p>
      w: LibreOffice Extension Manager
    </p>
    <p>
      x: OOo4Kids 1.2 Calc
    </p>
    <p>
      y: OOo4Kids 1.2 Draw
    </p>
    <p>
      z: OOo4Kids 1.2 Impress
    </p>
    <p>
      0: OOo4Kids 1.2 Math
    </p>
    <p>
      1: OOo4Kids 1.2
    </p>
    <p>
      2: OOo4Kids 1.2 Printer Administration
    </p>
    <p>
      3: OOo4Kids 1.2 Writer
    </p>
    <p>
      4: LibreOffice Quickstarter
    </p>
    <p>
      5: LibreOffice
    </p>
    <p>
      6: Orage Calendar - Desktop calendar
    </p>
    <p>
      7: XMind - Launch XMind 3.0
    </p>
    <p>
      8: Xpdf - Views Adobe PDF (acrobat) files
    </p>
    <p>
      9: Zathura - A minimalistic PDF viewer
    </p>
    <hr>
    <h3>
      <a name="SETTINGS"></a><a href="#STANDARD-MENU">Settings</a>
    </h3>
    <p>
      a: Email Settings - Configure email accounts
    </p>
    <p>
      b: Preferred Applications
    </p>
    <p>
      c: Keyboard Indicator plugins - Enable/disable installed plugins
    </p>
    <p>
      d: Privilege granting - Configure behavior of the privilege-granting tool
    </p>
    <p>
      e: Multimedia Systems Selector - Configure defaults for GStreamer applications
    </p>
    <p>
      f: Touchpad - Set your touchpad preferences
    </p>
    <p>
      g: Java Control Panel
    </p>
    <p>
      h: Java Policy Settings
    </p>
    <p>
      i: Menu Updating Tool
    </p>
    <p>
      j: Change Password
    </p>
    <p>
      k: Menu Editor
    </p>
    <p>
      l: System Settings
    </p>
    <p>
      m: Preferred Applications
    </p>
    <p>
      n: Customize Look and Feel - Customizes look and feel of your desktop and applications
    </p>
    <p>
      o: Monitor Settings - Change screen resolution and configure external monitors
    </p>
    <p>
      p: Opera Widget Manager
    </p>
    <p>
      q: Panel
    </p>
    <p>
      r: Qt Config  - Configure Qt behavior, styles, fonts
    </p>
    <p>
      s: Startup Applications - Choose what applications to start when you log in
    </p>
    <p>
      t: File Manager - Configure the Thunar file manager
    </p>
    <p>
      u: Panel tint2 - Customize the panel settings
    </p>
    <p>
      v: Startup Disk Creator - Create a startup disk using a CD or disc image
    </p>
    <p>
      w: Desktop  - Set desktop background and menu and icon behaviour
    </p>
    <p>
      x: Display - Configure screen settings and layout
    </p>
    <p>
      y: Keyboard - Edit keyboard settings and application shortcuts
    </p>
    <p>
      z: Mouse - Configure pointer device behavior and appearance
    </p>
    <p>
      0: Session and Startup - Customize desktop startup and splash screen
    </p>
    <p>
      1: Settings Manager - Graphical Settings Manager for Xfce 4
    </p>
    <p>
      2: Appearance - Customize the look of your desktop
    </p>
    <p>
      3: Window Manager - Configure window behavior and shortcuts
    </p>
    <p>
      4: Window Manager Tweaks - Fine-tune window behaviour and effects
    </p>
    <p>
      5: Workspaces - Set number and names of workspaces
    </p>
    <p>
      6: Orage preferences - Settings for the Xfce 4 Calendar Application (Orage)
    </p>
    <p>
      7: Accessibility - Improve keyboard and mouse accessibility
    </p>
    <p>
      8: Settings Editor - Graphical settings editor for Xfconf
    </p>
    <p>
      9: Xfce 4 Printing System Settings - Allow you to select the printing system backend that xfprint will use
    </p>
    <p>
      A: Screensaver - Change screensaver properties
    </p>
    <hr>
    <h3>
      <a name="SYSTEM"></a><a href="#STANDARD-MENU">System</a>
    </h3>
    <p>
      a: Terminal - Use the command line
    </p>
    <p>
      b: Bulk Rename - Rename Multiple Files
    </p>
    <p>
      c: Open Folder with Thunar - Open the specified folders in Thunar
    </p>
    <p>
      d: Thunar File Manager - Browse the filesystem with the file manager
    </p>
    <p>
      e: Avahi Zeroconf Browser - Browse for Zeroconf services available on your network
    </p>
    <p>
      f: CD/DVD Creator - Create CDs and DVDs
    </p>
    <p>
      g: Cairo-Dock (no OpenGL) - A light and eye-candy dock and desklets for your desktop.
    </p>
    <p>
      h: GLX-Dock (Cairo-Dock with OpenGL) - Cairo-Dock with OpenGL (hardware acceleration)
    </p>
    <p>
      i: Manage Printing
    </p>
    <p>
      j: dconf Editor - Directly edit your entire configuration database
    </p>
    <p>
      k: Configuration Editor - Directly edit your entire configuration database
    </p>
    <p>
      l: Keyboard Layout - Preview keyboard layouts
    </p>
    <p>
      m: Panel
    </p>
    <p>
      n: System Monitor
    </p>
    <p>
      o: GParted - Create, reorganize, and delete partitions
    </p>
    <p>
      p: Htop - Show System Processes
    </p>
    <p>
      q: Dolphin
    </p>
    <p>
      r: K3b - Disk writing program
    </p>
    <p>
      s: KDiskFree
    </p>
    <p>
      t: Konqueror
    </p>
    <p>
      u: Konqueror
    </p>
    <p>
      v: Konqueror
    </p>
    <p>
      w: Konqueror
    </p>
    <p>
      x: KInfoCenter
    </p>
    <p>
      y: File Manager - Super User Mode
    </p>
    <p>
      z: Konsole
    </p>
    <p>
      0: KRandRTray - A panel applet for resizing and reorientating X screens.
    </p>
    <p>
      1: Krfb
    </p>
    <p>
      2: Krusader - root-mode
    </p>
    <p>
      3: System Monitor
    </p>
    <p>
      4: KSystemLog
    </p>
    <p>
      5: KUser
    </p>
    <p>
      6: KWalletManager
    </p>
    <p>
      7: KwikDisk
    </p>
    <p>
      8: Nepomuk Backup
    </p>
    <p>
      9: Yakuake
    </p>
    <p>
      A: Task Manager - Manage running processes
    </p>
    <p>
      B: rxvt-unicode - An Unicode capable rxvt clone
    </p>
    <p>
      C: UNetbootin - Tool for creating Live USB drives
    </p>
    <p>
      D: Startup Disk Creator - Create a startup disk using a CD or disc image
    </p>
    <p>
      E: Startup Disk Creator - Create a startup disk using a CD or disc image
    </p>
    <p>
      F: Oracle VM VirtualBox
    </p>
    <p>
      G: Wireshark - Network traffic analyzer
    </p>
    <p>
      H: Log Out
    </p>
    <p>
      I: Xfe - A lightweight file manager for X Window
    </p>
    <p>
      J: XNC - Graphical File manager, X Northern Captain
    </p>
    <hr>
    <h3>
      <a name="UTILITY"></a><a href="#STANDARD-MENU">Utility</a>
    </h3>
    <p>
      a: SAGE - SAGE NOTEBOOK
    </p>
    <p>
      b: Terminal - Use the command line
    </p>
    <p>
      c: Bulk Rename - Rename Multiple Files
    </p>
    <p>
      d: Open Folder with Thunar - Open the specified folders in Thunar
    </p>
    <p>
      e: Thunar File Manager - Browse the filesystem with the file manager
    </p>
    <p>
      f: Brasero - Create and copy CDs and DVDs
    </p>
    <p>
      g: Circle and Ruler - Geometry program
    </p>
    <p>
      h: dosbox Emulator - An emulator to run old DOS games
    </p>
    <p>
      i: File Manager - Configure the Thunar file manager
    </p>
    <p>
      j: Terminal Emulator
    </p>
    <p>
      k: gEDA Attribute Editor - Manipulate component attributes with gattrib
    </p>
    <p>
      l: gEDA Schematic Editor - Create and edit electrical schematics and symbols with gschem
    </p>
    <p>
      m: Root Terminal - Opens a terminal as the root user, using gksu to ask for the password
    </p>
    <p>
      n: Orage Globaltime - Show clocks from different countries
    </p>
    <p>
      o: Terminal - Use the command line
    </p>
    <p>
      p: Image Viewer
    </p>
    <p>
      q: GSpiceUI - A GUI to various freely available Spice electronic circuit simulators
    </p>
    <p>
      r: Character Map - Insert special characters into documents
    </p>
    <p>
      s: gVim - GTK2 enhanced vim text editor
    </p>
    <p>
      t: HP Device Manager - View device status, ink levels and perform maintenance.
    </p>
    <p>
      u: K3DSurf - Visualize and manipulate Mathematical models in three, four, five, and six dimensions
    </p>
    <p>
      v: Help - Get help with GNOME
    </p>
    <p>
      w: Home
    </p>
    <p>
      x: KCharSelect
    </p>
    <p>
      y: KFloppy
    </p>
    <p>
      z: KJots
    </p>
    <p>
      0: Akonaditray
    </p>
    <p>
      1: Ark
    </p>
    <p>
      2: KDE Groupware Wizard
    </p>
    <p>
      3: KAlarm
    </p>
    <p>
      4: Kate
    </p>
    <p>
      5: KCalc
    </p>
    <p>
      6: KFileReplace
    </p>
    <p>
      7: Find Files/Folders
    </p>
    <p>
      8: KFontView
    </p>
    <p>
      9: KGpg - A GnuPG frontend
    </p>
    <p>
      A: Kleopatra
    </p>
    <p>
      B: Kleopatra
    </p>
    <p>
      C: Klipper
    </p>
    <p>
      D: KMag
    </p>
    <p>
      E: KMouseTool - Clicks the mouse for you, reducing the effects of RSI
    </p>
    <p>
      F: KMouth
    </p>
    <p>
      G: KNotes
    </p>
    <p>
      H: KonsoleKalendar
    </p>
    <p>
      I: Krusader
    </p>
    <p>
      J: KTeaTime
    </p>
    <p>
      K: Snippets datafile editor
    </p>
    <p>
      L: KTimer
    </p>
    <p>
      M: KTimeTracker
    </p>
    <p>
      N: KWrite
    </p>
    <p>
      O: Okteta
    </p>
    <p>
      P: SuperKaramba - An engine for cool desktop eyecandy.
    </p>
    <p>
      Q: Sweeper
    </p>
    <p>
      R: LXTerminal - Use the command line
    </p>
    <p>
      S: XMaxima - A sophisticated computer algebra system
    </p>
    <p>
      T: Mousepad - Simple text editor
    </p>
    <p>
      U: Files - Access and organize files
    </p>
    <p>
      V: Disk Utility - Manage Drives and Media
    </p>
    <p>
      W: File Manager - Configure the Thunar file manager
    </p>
    <p>
      X: PDF Editor
    </p>
    <p>
      Y: PlayOnLinux - PlayOnLinux
    </p>
    <p>
      Z: Scilab - A scientific software package for numerical computations
    </p>
    <p>
      |: Tilda
    </p>
    <p>
      |: Worker - File manager for X.
    </p>
    <p>
      |: About Xfce
    </p>
    <p>
      |: Application Finder - Find and launch applications installed on your system
    </p>
    <p>
      |: Help - Get help with GNOME
    </p>
    <p>
      |: Xfi - A simple image viewer for Xfe
    </p>
    <p>
      |: Xfp - A simple package manager for Xfe
    </p>
    <p>
      |: Xfce 4 Print Manager - Show the printer list and allow you to manage their jobs
    </p>
    <p>
      |: Xfce 4 Print Dialog - Print a file and allow you to set up its layout
    </p>
    <p>
      |: Run Program...
    </p>
    <p>
      |: Xfv - A simple text viewer for Xfe
    </p>
    <p>
      |: Xfw - A simple text editor for Xfe
    </p>
    <p>
      |: XNC - Graphical File manager, X Northern Captain
    </p>
    <p>
      |: Help - Get help with GNOME
    </p>
    <p>
      |: Zhu3D - With Zhu3D, you can view, animate, and solve up to three functions in 3D-space in an interactive manner
    </p>
    <p>
      |: KDE Resources - Configure KDE Resources
    </p>
    <hr>
    <h3>
      <a name="TERMINALEMULATOR"></a><a href="#STANDARD-MENU">Terminalemulator</a>
    </h3>
    <p>
      a: Terminal - Use the command line
    </p>
    <p>
      b: Root Terminal - Opens a terminal as the root user, using gksu to ask for the password
    </p>
    <p>
      c: Terminal - Use the command line
    </p>
    <p>
      d: Konsole
    </p>
    <p>
      e: Yakuake
    </p>
    <p>
      f: LXTerminal - Use the command line
    </p>
    <p>
      g: rxvt-unicode - An Unicode capable rxvt clone
    </p>
    <p>
      h: Tilda
    </p>
    <hr>
    <h3>
      <a name="ARCHLINUX"></a><a href="#STANDARD-MENU">Archlinux</a>
    </h3>
    <p>
      a: AUR - Archlinux AUR
    </p>
    <p>
      b: Bugs - Archlinux Bugtracker
    </p>
    <p>
      c: Developers - Archlinux development team
    </p>
    <p>
      d: Documentation - Archlinux Documentation
    </p>
    <p>
      e: Donate - Archlinux Donations
    </p>
    <p>
      f: Forum - Archlinux Forum
    </p>
    <p>
      g: Homepage - Archlinux homepage
    </p>
    <p>
      h: SVN - Archlinux SVN
    </p>
    <p>
      i: Schwag - Archlinux goodie shopping
    </p>
    <p>
      j: Wiki - Archlinux Wiki
    </p>
    <hr>
    <h3>
      <a name="SCREENSAVER"></a><a href="#STANDARD-MENU">Screensaver</a>
    </h3>
    <hr>
    <h3>
      <a name="CHILD-MENU"></a><a href="#MAIN">Child-Menu</a>
    </h3>
    <p>
      r: Rename the current child
    </p>
    <p>
      e: Ensure that all children names are unique
    </p>
    <p>
      n: Ensure that all children numbers are unique
    </p>
    <p>
      Delete: Delete the current child and its children in all frames
    </p>
    <p>
      X: Remove the current child from its parent frame
    </p>
    <p>
      h: Hide the current child
    </p>
    <p>
      u: Unhide a child in the current frame
    </p>
    <p>
      f: Unhide a child from all frames in the current frame
    </p>
    <p>
      a: Unhide all current frame hidden children
    </p>
    <p>
      Page_Up: Lower the child in the current frame
    </p>
    <p>
      Page_Down: Raise the child in the current frame
    </p>
    <hr>
    <h3>
      <a name="FRAME-MENU"></a><a href="#MAIN">Frame-Menu</a>
    </h3>
    <p>
      a: <a href="#FRAME-ADDING-MENU">< Adding frame menu ></a>
    </p>
    <p>
      l: <a href="#FRAME-LAYOUT-MENU">< Frame layout menu ></a>
    </p>
    <p>
      n: <a href="#FRAME-NW-HOOK-MENU">< Frame new window hook menu ></a>
    </p>
    <p>
      m: <a href="#FRAME-MOVEMENT-MENU">< Frame movement menu ></a>
    </p>
    <p>
      f: <a href="#FRAME-FOCUS-POLICY">< Frame focus policy menu ></a>
    </p>
    <p>
      w: <a href="#FRAME-MANAGED-WINDOW-MENU">< Managed window type menu ></a>
    </p>
    <p>
      u: <a href="#FRAME-UNMANAGED-WINDOW-MENU">< Unmanaged window behaviour ></a>
    </p>
    <p>
      s: <a href="#FRAME-MISCELLANEOUS-MENU">< Frame miscallenous menu ></a>
    </p>
    <p>
      x: Maximize/Unmaximize the current frame in its parent frame
    </p>
    <hr>
    <h3>
      <a name="FRAME-ADDING-MENU"></a><a href="#FRAME-MENU">Frame-Adding-Menu</a>
    </h3>
    <p>
      a: Add a default frame in the current frame
    </p>
    <p>
      p: Add a placed frame in the current frame
    </p>
    <hr>
    <h3>
      <a name="FRAME-LAYOUT-MENU"></a><a href="#FRAME-MENU">Frame-Layout-Menu</a>
    </h3>
    <p>
      a: <a href="#FRAME-FAST-LAYOUT-MENU">< Frame fast layout menu ></a>
    </p>
    <p>
      b: No layout: Maximize windows in their frame - Leave frames to their original size
    </p>
    <p>
      c: No layout: Maximize windows in their frame - Leave frames to their actual size
    </p>
    <p>
      d: Maximize layout: Maximize windows and frames in their parent frame
    </p>
    <p>
      e: <a href="#FRAME-TILE-LAYOUT-MENU">< Frame tile layout menu ></a>
    </p>
    <p>
      f: <a href="#FRAME-TILE-DIR-LAYOUT-MENU">< Tile in one direction layout menu ></a>
    </p>
    <p>
      g: <a href="#FRAME-TILE-SPACE-LAYOUT-MENU">< Tile with some space on one side menu ></a>
    </p>
    <p>
      h: <a href="#FRAME-MAIN-WINDOW-LAYOUT-MENU">< Main window layout menu ></a>
    </p>
    <p>
      i: <a href="#FRAME-GIMP-LAYOUT-MENU">< The GIMP layout menu ></a>
    </p>
    <hr>
    <h3>
      <a name="FRAME-FAST-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Fast-Layout-Menu</a>
    </h3>
    <p>
      s: Switch between two layouts
    </p>
    <p>
      p: Push the current layout in the fast layout list
    </p>
    <hr>
    <h3>
      <a name="FRAME-TILE-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Tile-Layout-Menu</a>
    </h3>
    <p>
      v: Tile child in its frame (vertical)
    </p>
    <p>
      h: Tile child in its frame (horizontal)
    </p>
    <p>
      c: One column layout
    </p>
    <p>
      l: One line layout
    </p>
    <p>
      s: Tile Space: tile child in its frame leaving spaces between them
    </p>
    <hr>
    <h3>
      <a name="FRAME-TILE-DIR-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Tile-Dir-Layout-Menu</a>
    </h3>
    <p>
      l: Tile Left: main child on left and others on right
    </p>
    <p>
      r: Tile Right: main child on right and others on left
    </p>
    <p>
      t: Tile Top: main child on top and others on bottom
    </p>
    <p>
      b: Tile Bottom: main child on bottom and others on top
    </p>
    <hr>
    <h3>
      <a name="FRAME-TILE-SPACE-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Tile-Space-Layout-Menu</a>
    </h3>
    <p>
      a: Tile Left Space: main child on left and others on right. Leave some space on the left.
    </p>
    <hr>
    <h3>
      <a name="FRAME-MAIN-WINDOW-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Main-Window-Layout-Menu</a>
    </h3>
    <p>
      r: Main window right: Main windows on the right. Others on the left.
    </p>
    <p>
      l: Main window left: Main windows on the left. Others on the right.
    </p>
    <p>
      t: Main window top: Main windows on the top. Others on the bottom.
    </p>
    <p>
      b: Main window bottom: Main windows on the bottom. Others on the top.
    </p>
    <p>
      -=- Actions on main windows list -=-
    </p>
    <p>
      a: Add the current window in the main window list
    </p>
    <p>
      v: Remove the current window from the main window list
    </p>
    <p>
      c: Clear the main window list
    </p>
    <hr>
    <h3>
      <a name="FRAME-GIMP-LAYOUT-MENU"></a><a href="#FRAME-LAYOUT-MENU">Frame-Gimp-Layout-Menu</a>
    </h3>
    <p>
      g: The GIMP Layout
    </p>
    <p>
      p: Restore the previous layout
    </p>
    <p>
      h: Help on the GIMP layout
    </p>
    <p>
      -=- Main window layout -=-
    </p>
    <p>
      r: Main window right: Main windows on the right. Others on the left.
    </p>
    <p>
      l: Main window left: Main windows on the left. Others on the right.
    </p>
    <p>
      t: Main window top: Main windows on the top. Others on the bottom.
    </p>
    <p>
      b: Main window bottom: Main windows on the bottom. Others on the top.
    </p>
    <p>
      -=- Actions on main windows list -=-
    </p>
    <p>
      a: Add the current window in the main window list
    </p>
    <p>
      v: Remove the current window from the main window list
    </p>
    <p>
      c: Clear the main window list
    </p>
    <hr>
    <h3>
      <a name="FRAME-NW-HOOK-MENU"></a><a href="#FRAME-MENU">Frame-Nw-Hook-Menu</a>
    </h3>
    <p>
      a: Open the next window in the current frame
    </p>
    <p>
      b: Open the next window in the current root
    </p>
    <p>
      c: Open the next window in a new frame in the current root
    </p>
    <p>
      d: Open the next window in a new frame in the root frame
    </p>
    <p>
      e: Open the next window in a new frame in the parent frame
    </p>
    <p>
      f: Open the next window in the current frame and leave the focus on the current child
    </p>
    <p>
      g: Open the next window in a named frame
    </p>
    <p>
      h: Open the next window in a numbered frame
    </p>
    <p>
      i: Open the window in this frame if it match nw-absorb-test
    </p>
    <hr>
    <h3>
      <a name="FRAME-MOVEMENT-MENU"></a><a href="#FRAME-MENU">Frame-Movement-Menu</a>
    </h3>
    <p>
      p: <a href="#FRAME-PACK-MENU">< Frame pack menu ></a>
    </p>
    <p>
      f: <a href="#FRAME-FILL-MENU">< Frame fill menu ></a>
    </p>
    <p>
      r: <a href="#FRAME-RESIZE-MENU">< Frame resize menu ></a>
    </p>
    <p>
      c: Center the current frame
    </p>
    <p>
      Right: Select the next brother frame
    </p>
    <p>
      Left: Select the previous brother frame
    </p>
    <p>
      Up: Select the next level
    </p>
    <p>
      Down: Select the previous levelframe
    </p>
    <p>
      Tab: Select the next child
    </p>
    <hr>
    <h3>
      <a name="FRAME-PACK-MENU"></a><a href="#FRAME-MOVEMENT-MENU">Frame-Pack-Menu</a>
    </h3>
    <p>
      Up: Pack the current frame up
    </p>
    <p>
      Down: Pack the current frame down
    </p>
    <p>
      Left: Pack the current frame left
    </p>
    <p>
      Right: Pack the current frame right
    </p>
    <hr>
    <h3>
      <a name="FRAME-FILL-MENU"></a><a href="#FRAME-MOVEMENT-MENU">Frame-Fill-Menu</a>
    </h3>
    <p>
      Up: Fill the current frame up
    </p>
    <p>
      Down: Fill the current frame down
    </p>
    <p>
      Left: Fill the current frame left
    </p>
    <p>
      Right: Fill the current frame right
    </p>
    <p>
      a: Fill the current frame in all directions
    </p>
    <p>
      v: Fill the current frame vertically
    </p>
    <p>
      h: Fill the current frame horizontally
    </p>
    <hr>
    <h3>
      <a name="FRAME-RESIZE-MENU"></a><a href="#FRAME-MOVEMENT-MENU">Frame-Resize-Menu</a>
    </h3>
    <p>
      Up: Resize the current frame up to its half height
    </p>
    <p>
      Down: Resize the current frame down to its half height
    </p>
    <p>
      Left: Resize the current frame left to its half width
    </p>
    <p>
      Right: Resize the current frame right to its half width
    </p>
    <p>
      a: Resize down the current frame
    </p>
    <p>
      m: Resize down the current frame to its minimal size
    </p>
    <hr>
    <h3>
      <a name="FRAME-FOCUS-POLICY"></a><a href="#FRAME-MENU">Frame-Focus-Policy</a>
    </h3>
    <p>
      -=- For the current frame -=-
    </p>
    <p>
      a: Set a click focus policy for the current frame.
    </p>
    <p>
      b: Set a sloppy focus policy for the current frame.
    </p>
    <p>
      c: Set a (strict) sloppy focus policy only for windows in the current frame.
    </p>
    <p>
      d: Set a sloppy select policy for the current frame.
    </p>
    <p>
      -=- For all frames -=-
    </p>
    <p>
      e: Set a click focus policy for all frames.
    </p>
    <p>
      f: Set a sloppy focus policy for all frames.
    </p>
    <p>
      g: Set a (strict) sloppy focus policy for all frames.
    </p>
    <p>
      h: Set a sloppy select policy for all frames.
    </p>
    <hr>
    <h3>
      <a name="FRAME-MANAGED-WINDOW-MENU"></a><a href="#FRAME-MENU">Frame-Managed-Window-Menu</a>
    </h3>
    <p>
      m: Change window types to be managed by a frame
    </p>
    <p>
      a: Manage all window type
    </p>
    <p>
      n: Manage only normal window type
    </p>
    <p>
      u: Do not manage any window type
    </p>
    <hr>
    <h3>
      <a name="FRAME-UNMANAGED-WINDOW-MENU"></a><a href="#FRAME-MENU">Frame-Unmanaged-Window-Menu</a>
    </h3>
    <p>
      s: Show unmanaged windows when frame is not selected
    </p>
    <p>
      h: Hide unmanaged windows when frame is not selected
    </p>
    <p>
      d: Set default behaviour to hide or not unmanaged windows when frame is not selected
    </p>
    <p>
      w: Show unmanaged windows by default. This is overriden by functions above
    </p>
    <p>
      i: Hide unmanaged windows by default. This is overriden by functions above
    </p>
    <hr>
    <h3>
      <a name="FRAME-MISCELLANEOUS-MENU"></a><a href="#FRAME-MENU">Frame-Miscellaneous-Menu</a>
    </h3>
    <p>
      s: Show all frames info windows
    </p>
    <p>
      a: Hide all frames info windows
    </p>
    <p>
      h: Hide the current frame window
    </p>
    <p>
      w: Show the current frame window
    </p>
    <p>
      u: Renumber the current frame
    </p>
    <p>
      x: Create a new frame for each window in frame
    </p>
    <p>
      i: Absorb all frames subchildren in frame (explode frame opposite)
    </p>
    <hr>
    <h3>
      <a name="WINDOW-MENU"></a><a href="#MAIN">Window-Menu</a>
    </h3>
    <p>
      i: Display information on the current window
    </p>
    <p>
      f: Force the current window to move in the frame (Useful only for unmanaged windows)
    </p>
    <p>
      c: Force the current window to move in the center of the frame (Useful only for unmanaged windows)
    </p>
    <p>
      m: Force to manage the current window by its parent frame
    </p>
    <p>
      u: Force to not manage the current window by its parent frame
    </p>
    <p>
      a: Adapt the current frame to the current window minimal size hints
    </p>
    <p>
      w: Adapt the current frame to the current window minimal width hint
    </p>
    <p>
      h: Adapt the current frame to the current window minimal height hint
    </p>
    <hr>
    <h3>
      <a name="SELECTION-MENU"></a><a href="#MAIN">Selection-Menu</a>
    </h3>
    <p>
      x: Cut the current child to the selection
    </p>
    <p>
      c: Copy the current child to the selection
    </p>
    <p>
      v: Paste the selection in the current frame
    </p>
    <p>
      p: Paste the selection in the current frame - Do not clear the selection after paste
    </p>
    <p>
      Delete: Remove the current child from its parent frame
    </p>
    <p>
      z: Clear the current selection
    </p>
    <hr>
    <h3>
      <a name="ACTION-BY-NAME-MENU"></a><a href="#MAIN">Action-By-Name-Menu</a>
    </h3>
    <p>
      f: Focus a frame by name
    </p>
    <p>
      o: Open a new frame in a named frame
    </p>
    <p>
      d: Delete a frame by name
    </p>
    <p>
      m: Move current child in a named frame
    </p>
    <p>
      c: Copy current child in a named frame
    </p>
    <hr>
    <h3>
      <a name="ACTION-BY-NUMBER-MENU"></a><a href="#MAIN">Action-By-Number-Menu</a>
    </h3>
    <p>
      f: Focus a frame by number
    </p>
    <p>
      o: Open a new frame in a numbered frame
    </p>
    <p>
      d: Delete a frame by number
    </p>
    <p>
      m: Move current child in a numbered frame
    </p>
    <p>
      c: Copy current child in a numbered frame
    </p>
    <hr>
    <h3>
      <a name="UTILITY-MENU"></a><a href="#MAIN">Utility-Menu</a>
    </h3>
    <p>
      i: Identify a key
    </p>
    <p>
      colon: Eval a lisp form from the query input
    </p>
    <p>
      exclam: Run a program from the query input
    </p>
    <p>
      o: <a href="#OTHER-WINDOW-MANAGER-MENU">< Other window manager menu ></a>
    </p>
    <hr>
    <h3>
      <a name="OTHER-WINDOW-MANAGER-MENU"></a><a href="#UTILITY-MENU">Other-Window-Manager-Menu</a>
    </h3>
    <p>
      x: Run xterm
    </p>
    <p>
      t: Run twm
    </p>
    <p>
      i: Run icewm
    </p>
    <p>
      g: Run Gnome
    </p>
    <p>
      k: Run KDE
    </p>
    <p>
      c: Run XFCE
    </p>
    <p>
      l: Run LXDE
    </p>
    <p>
      p: Prompt for an other window manager
    </p>
    <hr>
    <h3>
      <a name="CONFIGURATION-MENU"></a><a href="#MAIN">Configuration-Menu</a>
    </h3>
    <p>
      a: <a href="#CONF-GIMP-LAYOUT">< Gimp Layout Group ></a>
    </p>
    <p>
      b: <a href="#CONF-NOTIFY-WINDOW">< Notify Window Group ></a>
    </p>
    <p>
      c: <a href="#CONF-MENU">< Menu Group ></a>
    </p>
    <p>
      d: <a href="#CONF-EXPOSE-MODE">< Expose Mode Group ></a>
    </p>
    <p>
      e: <a href="#CONF-CIRCULATE-MODE">< Circulate Mode Group ></a>
    </p>
    <p>
      f: <a href="#CONF-INFO-MODE">< Info Mode Group ></a>
    </p>
    <p>
      g: <a href="#CONF-QUERY-STRING">< Query String Group ></a>
    </p>
    <p>
      h: <a href="#CONF-IDENTIFY-KEY">< Identify Key Group ></a>
    </p>
    <p>
      i: <a href="#CONF-SECOND-MODE">< Second Mode Group ></a>
    </p>
    <p>
      j: <a href="#CONF-FRAME-COLORS">< Frame Colors Group ></a>
    </p>
    <p>
      k: <a href="#CONF-CORNER">< Corner Group ></a>
    </p>
    <p>
      l: <a href="#CONF-PLACEMENT">< Placement Group ></a>
    </p>
    <p>
      m: <a href="#CONF-HOOK">< Hook Group ></a>
    </p>
    <p>
      n: <a href="#CONF-MAIN-MODE">< Main Mode Group ></a>
    </p>
    <p>
      o: <a href="#CONF-MISCELLANEOUS">< Miscellaneous Group ></a>
    </p>
    <p>
      F2: Save all configuration variables in clfswmrc
    </p>
    <p>
      F3: Reset all configuration variables to their default values
    </p>
    <hr>
    <h3>
      <a name="CONF-GIMP-LAYOUT"></a><a href="#CONFIGURATION-MENU">Conf-Gimp-Layout</a>
    </h3>
    <p>
      a: Configure GIMP-LAYOUT-NOTIFY-WINDOW-DELAY
    </p>
    <hr>
    <h3>
      <a name="CONF-NOTIFY-WINDOW"></a><a href="#CONFIGURATION-MENU">Conf-Notify-Window</a>
    </h3>
    <p>
      a: Configure NOTIFY-WINDOW-DELAY
    </p>
    <p>
      b: Configure NOTIFY-WINDOW-BORDER
    </p>
    <p>
      c: Configure NOTIFY-WINDOW-FOREGROUND
    </p>
    <p>
      d: Configure NOTIFY-WINDOW-BACKGROUND
    </p>
    <p>
      e: Configure NOTIFY-WINDOW-FONT-STRING
    </p>
    <hr>
    <h3>
      <a name="CONF-MENU"></a><a href="#CONFIGURATION-MENU">Conf-Menu</a>
    </h3>
    <p>
      a: Configure XDG-SECTION-LIST
    </p>
    <p>
      b: Configure MENU-COLOR-MENU-KEY
    </p>
    <p>
      c: Configure MENU-COLOR-KEY
    </p>
    <p>
      d: Configure MENU-COLOR-COMMENT
    </p>
    <p>
      e: Configure MENU-COLOR-SUBMENU
    </p>
    <hr>
    <h3>
      <a name="CONF-EXPOSE-MODE"></a><a href="#CONFIGURATION-MENU">Conf-Expose-Mode</a>
    </h3>
    <p>
      a: Configure EXPOSE-SHOW-WINDOW-TITLE
    </p>
    <p>
      b: Configure EXPOSE-VALID-ON-KEY
    </p>
    <p>
      c: Configure EXPOSE-BORDER
    </p>
    <p>
      d: Configure EXPOSE-FOREGROUND
    </p>
    <p>
      e: Configure EXPOSE-BACKGROUND
    </p>
    <p>
      f: Configure EXPOSE-FONT-STRING
    </p>
    <hr>
    <h3>
      <a name="CONF-CIRCULATE-MODE"></a><a href="#CONFIGURATION-MENU">Conf-Circulate-Mode</a>
    </h3>
    <p>
      a: Configure CIRCULATE-TEXT-LIMITE
    </p>
    <p>
      b: Configure CIRCULATE-HEIGHT
    </p>
    <p>
      c: Configure CIRCULATE-WIDTH
    </p>
    <p>
      d: Configure CIRCULATE-BORDER
    </p>
    <p>
      e: Configure CIRCULATE-FOREGROUND
    </p>
    <p>
      f: Configure CIRCULATE-BACKGROUND
    </p>
    <p>
      g: Configure CIRCULATE-FONT-STRING
    </p>
    <hr>
    <h3>
      <a name="CONF-INFO-MODE"></a><a href="#CONFIGURATION-MENU">Conf-Info-Mode</a>
    </h3>
    <p>
      a: Configure INFO-COLOR-SECOND
    </p>
    <p>
      b: Configure INFO-COLOR-FIRST
    </p>
    <p>
      c: Configure INFO-COLOR-UNDERLINE
    </p>
    <p>
      d: Configure INFO-COLOR-TITLE
    </p>
    <p>
      e: Configure INFO-CLICK-TO-SELECT
    </p>
    <p>
      f: Configure INFO-FONT-STRING
    </p>
    <p>
      g: Configure INFO-SELECTED-BACKGROUND
    </p>
    <p>
      h: Configure INFO-LINE-CURSOR
    </p>
    <p>
      i: Configure INFO-BORDER
    </p>
    <p>
      j: Configure INFO-FOREGROUND
    </p>
    <p>
      k: Configure INFO-BACKGROUND
    </p>
    <hr>
    <h3>
      <a name="CONF-QUERY-STRING"></a><a href="#CONFIGURATION-MENU">Conf-Query-String</a>
    </h3>
    <p>
      a: Configure QUERY-BORDER
    </p>
    <p>
      b: Configure QUERY-PARENT-ERROR-COLOR
    </p>
    <p>
      c: Configure QUERY-PARENT-COLOR
    </p>
    <p>
      d: Configure QUERY-CURSOR-COLOR
    </p>
    <p>
      e: Configure QUERY-FOREGROUND
    </p>
    <p>
      f: Configure QUERY-MESSAGE-COLOR
    </p>
    <p>
      g: Configure QUERY-BACKGROUND
    </p>
    <p>
      h: Configure QUERY-FONT-STRING
    </p>
    <hr>
    <h3>
      <a name="CONF-IDENTIFY-KEY"></a><a href="#CONFIGURATION-MENU">Conf-Identify-Key</a>
    </h3>
    <p>
      a: Configure IDENTIFY-BORDER
    </p>
    <p>
      b: Configure IDENTIFY-FOREGROUND
    </p>
    <p>
      c: Configure IDENTIFY-BACKGROUND
    </p>
    <p>
      d: Configure IDENTIFY-FONT-STRING
    </p>
    <hr>
    <h3>
      <a name="CONF-SECOND-MODE"></a><a href="#CONFIGURATION-MENU">Conf-Second-Mode</a>
    </h3>
    <p>
      a: Configure SM-HEIGHT
    </p>
    <p>
      b: Configure SM-WIDTH
    </p>
    <p>
      c: Configure SM-FONT-STRING
    </p>
    <p>
      d: Configure SM-FOREGROUND-COLOR
    </p>
    <p>
      e: Configure SM-BACKGROUND-COLOR
    </p>
    <p>
      f: Configure SM-BORDER-COLOR
    </p>
    <hr>
    <h3>
      <a name="CONF-FRAME-COLORS"></a><a href="#CONFIGURATION-MENU">Conf-Frame-Colors</a>
    </h3>
    <p>
      a: Configure FRAME-FOREGROUND-HIDDEN
    </p>
    <p>
      b: Configure FRAME-FOREGROUND-ROOT
    </p>
    <p>
      c: Configure FRAME-FOREGROUND
    </p>
    <p>
      d: Configure FRAME-BACKGROUND
    </p>
    <hr>
    <h3>
      <a name="CONF-CORNER"></a><a href="#CONFIGURATION-MENU">Conf-Corner</a>
    </h3>
    <p>
      a: Configure CLFSWM-TERMINAL-CMD
    </p>
    <p>
      b: Configure CLFSWM-TERMINAL-NAME
    </p>
    <p>
      c: Configure VIRTUAL-KEYBOARD-CMD
    </p>
    <p>
      d: Configure CORNER-SECOND-MODE-RIGHT-BUTTON
    </p>
    <p>
      e: Configure CORNER-SECOND-MODE-MIDDLE-BUTTON
    </p>
    <p>
      f: Configure CORNER-SECOND-MODE-LEFT-BUTTON
    </p>
    <p>
      g: Configure CORNER-MAIN-MODE-RIGHT-BUTTON
    </p>
    <p>
      h: Configure CORNER-MAIN-MODE-MIDDLE-BUTTON
    </p>
    <p>
      i: Configure CORNER-MAIN-MODE-LEFT-BUTTON
    </p>
    <p>
      j: Configure CORNER-SIZE
    </p>
    <hr>
    <h3>
      <a name="CONF-PLACEMENT"></a><a href="#CONFIGURATION-MENU">Conf-Placement</a>
    </h3>
    <p>
      a: Configure ASK-CLOSE/KILL-PLACEMENT
    </p>
    <p>
      b: Configure NOTIFY-WINDOW-PLACEMENT
    </p>
    <p>
      c: Configure EXPOSE-MODE-PLACEMENT
    </p>
    <p>
      d: Configure CIRCULATE-MODE-PLACEMENT
    </p>
    <p>
      e: Configure QUERY-MODE-PLACEMENT
    </p>
    <p>
      f: Configure INFO-MODE-PLACEMENT
    </p>
    <p>
      g: Configure SECOND-MODE-PLACEMENT
    </p>
    <p>
      h: Configure BANISH-POINTER-PLACEMENT
    </p>
    <hr>
    <h3>
      <a name="CONF-HOOK"></a><a href="#CONFIGURATION-MENU">Conf-Hook</a>
    </h3>
    <p>
      a: Configure DEFAULT-NW-HOOK
    </p>
    <p>
      b: Configure CLOSE-HOOK
    </p>
    <p>
      c: Configure INIT-HOOK
    </p>
    <p>
      d: Configure MAIN-ENTRANCE-HOOK
    </p>
    <p>
      e: Configure LOOP-HOOK
    </p>
    <p>
      f: Configure BINDING-HOOK
    </p>
    <hr>
    <h3>
      <a name="CONF-MAIN-MODE"></a><a href="#CONFIGURATION-MENU">Conf-Main-Mode</a>
    </h3>
    <p>
      a: Configure COLOR-MAYBE-SELECTED
    </p>
    <p>
      b: Configure COLOR-UNSELECTED
    </p>
    <p>
      c: Configure COLOR-SELECTED
    </p>
    <p>
      d: Configure COLOR-MOVE-WINDOW
    </p>
    <hr>
    <h3>
      <a name="CONF-MISCELLANEOUS"></a><a href="#CONFIGURATION-MENU">Conf-Miscellaneous</a>
    </h3>
    <p>
      a: Configure DEFAULT-WINDOW-HEIGHT
    </p>
    <p>
      b: Configure DEFAULT-WINDOW-WIDTH
    </p>
    <p>
      c: Configure CREATE-FRAME-ON-ROOT
    </p>
    <p>
      d: Configure SPATIAL-MOVE-DELAY-AFTER
    </p>
    <p>
      e: Configure SPATIAL-MOVE-DELAY-BEFORE
    </p>
    <p>
      f: Configure SNAP-SIZE
    </p>
    <p>
      g: Configure HIDE-UNMANAGED-WINDOW
    </p>
    <p>
      h: Configure NEVER-MANAGED-WINDOW-LIST
    </p>
    <p>
      i: Configure DEFAULT-MODIFIERS
    </p>
    <p>
      j: Configure DEFAULT-FOCUS-POLICY
    </p>
    <p>
      k: Configure DEFAULT-MANAGED-TYPE
    </p>
    <p>
      l: Configure DEFAULT-FRAME-DATA
    </p>
    <p>
      m: Configure DEFAULT-FONT-STRING
    </p>
    <p>
      n: Configure LOOP-TIMEOUT
    </p>
    <p>
      o: Configure BORDER-SIZE
    </p>
    <p>
      p: Configure SHOW-ROOT-FRAME-P
    </p>
    <p>
      q: Configure HAVE-TO-COMPRESS-NOTIFY
    </p>
    <hr>
    <h3>
      <a name="CLFSWM-MENU"></a><a href="#MAIN">Clfswm-Menu</a>
    </h3>
    <p>
      r: Reset clfswm
    </p>
    <p>
      l: Reload clfswm
    </p>
    <p>
      x: Exit clfswm
    </p>
    <hr>
    <p>
      <small>
        This documentation was produced with the CLFSWM auto-doc functions. To reproduce it, use the produce-menu-doc-html-in-file or
the produce-all-docs function from the Lisp REPL.
      </small>
    </p>
    <p>
      <small>
        Something like this:<br>
LISP> (in-package :clfswm)<br>
CLFSWM> (produce-menu-doc-html-in-file "my-menu.html")<br>
or<br> CLFSWM> (produce-all-docs)
      </small>
    </p>
  </body>
</html>