-
Notifications
You must be signed in to change notification settings - Fork 85
/
jwm.1.in
2184 lines (2115 loc) · 48.6 KB
/
jwm.1.in
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
.\"
.\" groff -man -Tascii jwm.1
.\"
.TH jwm 1 "@DATE@" "v@VERSION@"
.SH NAME
JWM - Joe's Window Manager
.SH SYNOPSIS
.BR jwm " [options]"
.SH DESCRIPTION
JWM is a window manager for the X11 Window System.
.SH OPTIONS
\fB\-display\fP \fIdisplay\fP
.RS
This option specifies the display to use; see \fBX\fP(1).
.RE
.P
.B "-exit"
.RS
Exit JWM by sending _JWM_EXIT to the root window.
.RE
.P
\fB\-f\fP \fIfile\fP
.RS
Specify an alternate configuration file to use.
.RE
.P
.B "-h"
.RS
Display a help message and exit.
.RE
.P
.B "-p"
.RS
Parse the configuration file and exit.
It is a good idea to use this after making modifications to the configuration
file to ensure there are no errors.
.RE
.P
.B "-restart"
.RS
Restart JWM by sending _JWM_RESTART to the root window.
.RE
.P
.B "-reload"
.RS
Reload menus by sending _JWM_RELOAD to the root window.
.RE
.P
.B "-v"
.RS
Display version information and exit.
.RE
.SH FILES
.IP "@SYSCONF@/system.jwmrc"
The default JWM configuration file.
.IP "~/.jwmrc"
Default local configuration file. Copy the default configuration file to this
location to make user-specific changes. See also, option \fB\-f\fP.
.SH CONFIGURATION
.B OVERVIEW
.RS
Configuration of JWM is done by editing ".jwmrc" (or the configuration
file specified with the \fB\-f\fP option). This file is XML
making it easy to edit, either by hand or programmatically. The
example.jwmrc gives an example configuration file.
Before restarting JWM, it is a good idea to run "jwm \-p" to make
sure the configuration file is free of errors. Otherwise you may end up
without a root menu.
.RE
.P
.B "ROOT MENU"
.RS
The root menu in JWM is the primary way of starting programs.
It also provides a way to restart or exit the window manager.
The outer most tag is \fBRootMenu\fP. The following attributes are
supported:
.P
\fBonroot\fP \fIlist\fP
.RS
Determine which buttons on the root window activate the menu.
This is a list of integers specifying buttons. The default is "123".
Note that multiple root menus may be specified by using different
buttons for different menus. The range of possible values is
\fB0\fP to \fB9\fP inclusive as well as \fBa\fP to \fBz\fP inclusive,
providing for up to 36 menus. Note that only the numeric values
map to mouse buttons.
.RE
.P
\fBheight\fP \fIint\fP
.RS
Height of each menu item in pixels. 0 indicates the largest menu item
will determine the height. The default is 0.
.RE
.P
\fBlabeled\fP \fIbool\fP
.RS
Determines if a label appears at the top of the menu. Default is false.
.RE
.P
\fBlabel\fP \fIstring\fP
.RS
The label to display at the top of the menu. Default is "JWM".
.RE
.P
\fBdynamic\fP \fIstring\fP
.RS
A dynamically loaded menu. If the text starts with \fIexec:\fP, the
output of the specified program is used.
.RE
.P
Within the \fBRootMenu\fP tag, the following tags are supported:
.P
.B Menu
.RS
This tag creates a submenu item. Any of the tags allowed within the
\fBRootMenu\fP tag, including the \fBMenu\fP tag are allowed within this
element. The following attributes are supported:
.P
\fBheight\fP \fIint\fP
.RS
Height of each menu item in pixels. 0 indicates the largest menu item
will determine the height. The default is inherited from the parent menu.
.RE
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. No default.
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this menu. No default.
.RE
.P
\fBlabeled\fP \fIbool\fP
.RS
Determines if a label appears at the top of the menu. Default is false.
.RE
.RE
.P
.B Dynamic
.RS
Dynamically include the contents of a file or executable into a submenu.
The file must start with a "JWM" tag. The file is specified by the text
of the tag. If the text starts with "exec:" then the output of a program
is used. This tag supports the same attributes as \fBMenu\fP.
A \fBtimeout\fP attribute may be specified to set a timeout in milliseconds.
The default timeout is 5000 milliseconds (5 seconds).
.RE
.P
.B Include
.RS
Include the contents of a file into the menu structure. The file must
start with a "JWM" tag. The file is specified by the text of the tag.
If the text starts with "exec:" then the output of a program is used.
A \fBtimeout\fP attribute may be specified to set a timeout in milliseconds.
The default timeout is 5000 milliseconds (5 seconds).
.RE
.P
.B Program
.RS
The \fBProgram\fP tag provides a way to start an external program. The text
in this tag is the command used to start the program.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to display. Default is the text of the tag.
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use. No default.
.RE
.RE
.P
.B Separator
.RS
This tag simply puts a line in the menu allowing menu divisions.
No text or attributes are used.
.RE
.P
.B Desktops
.RS
Add a desktop menu. This will add a submenu with a list of desktops that
can be used to change the current desktop.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use for the menu. The default is "Desktops".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B SendTo
.RS
Add a "send to" menu to the menu. After selecting an item from this menu,
a window may be selected to send that window to the selected desktop.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "SendTo".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Stick
.RS
Add a stick/unstick window operation to the menu. After selecting this
item a window may be selected to toggle the sticky state of that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Stick".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Maximize
.RS
Add a maximize window operation to the menu. After selecting this
item a window may be selected to toggle the maximized state of that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Maximize".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Minimize
.RS
Add a minimize window operation to the menu. After selecting this
item a window may be selected to minimize that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Minimize".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Shade
.RS
Add a shade/unshade window operation to the menu. After selecting this
item a window may be selected to toggle the shaded status of that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Shade".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Move
.RS
Add a move window operation to the menu. After selecting this
item a window may be selected to move that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Move".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Resize
.RS
Add a resize window operation to the menu. After selecting this
item a window may be selected to resize that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Resize".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Kill
.RS
Add a kill window operation to the menu. After selecting this
item a window may be selected to kill that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Kill".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Close
.RS
Add a close window operation to the menu. After selecting this
item a window may be selected to close that window.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Close".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use for this item. No default.
.RE
.RE
.P
.B Restart
.RS
This tag adds a menu item to restart the window manager.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Restart".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use. No default.
.RE
.RE
.P
.B Exit
.RS
This tag adds a menu item to exit the window manager. If text is
present within this tag, it is interpreted as a command to run when JWM
exits. This can be used to start another window manager.
The following attributes are supported:
.P
\fBlabel\fP \fIstring\fP
.RS
The label to use. The default is "Exit".
.RE
.P
\fBtooltip\fP \fIstring\fP
.RS
A tooltip to display. No default.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
The icon to use. No default.
.RE
.P
\fBconfirm\fP \fIbool\fP
.RS
Determine if a confirm dialog appears before exiting. Default is true.
.RE
.P
Note that confirm dialogs can be disabled completely at the compile-time.
.RE
.RE
.B TRAYS
.RS
One or more trays may be created via the \fBTray\fP tag.
This tag supports the following attributes:
.P
\fBautohide\fP \fIstring\fP
.RS
Specifies the location to hide the tray when not activated. Default is "off"
to disable hiding.
Possible values are "left", "right", "top", "bottom", "off", "on" (JWM
picks the location), and "invisible" (trays must be activated by a key
binding).
.RE
.P
\fBdelay\fP \fIint\fP
.RS
The delay before hiding the tray in milliseconds. Default is 0 milliseconds.
.RE
.P
\fBx\fP \fIint\fP
.RS
The x-coordinate of the tray. This may be negative to indicate an offset
from the right of the screen.
.RE
.P
\fBy\fP \fIint\fP
.RS
The y-coordinate of the tray. This may be negative to indicate an offset
from the bottom of the screen.
.RE
.P
\fBwidth\fP \fIint\fP
.RS
The width of the tray. 0 indicates that the tray should compute an
optimal width depending on what it contains and the layout. A negative
value subtracts from with screen width. 0 is the default.
.RE
.P
\fBheight\fP \fIint\fP
.RS
The height of the tray. 0 indicates that the tray should compute an
optimal height depending on what it contains and the layout. A negative
value subtracts from the screen height. 0 is the default.
.RE
.P
\fBscreen\fP \fIint\fP
.RS
The index of the screen on which to start the tray.
0 is the default (the primary screen).
.RE
.P
\fBlayer\fP { \fBbelow\fP | \fBnormal\fP | \fBabove\fP }
.RS
The layer of the tray. The default is \fBabove\fP.
.RE
.P
\fBlayout\fP { \fBvertical\fP | \fBhorizontal\fP }
.RS
The layout of the tray. The default is \fBhorizontal\fP.
.RE
.P
\fBvalign\fP { \fBfixed\fP | \fBtop\fP | \fBcenter\fP | \fBbottom\fP }
.RS
The vertical alignment of the tray. The default is \fBfixed\fP.
.RE
.P
\fBhalign\fP { \fBfixed\fP | \fBleft\fP | \fBcenter\fP | \fBright\fP }
.RS
The horizontal alignment of the tray. The default is \fBfixed\fP.
.RE
.P
Within this tag the following tags are supported:
.P
.B Clock
.RS
Add a clock to the tray. The text of this tag determines what action to
take when the clock is clicked. Optionally, one or more \fBButton\fP tags
may be specified to bind actions to specific mouse buttons specified via the
\fBmask\fP attribute. By default, the button mask is "123".
The following actions are supported:
.P
\fBroot:\fP\fIn\fP
.RS
Show root menu \fIn\fP.
Note that the default TrayButton action is \fBroot:1\fP.
.RE
.P
\fBexec:\fP \fIstring\fP
.RS
Execute a command.
.RE
.P
\fBshowdesktop\fP
.RS
Minimize all windows on the current desktop.
.RE
.P
This tag supports the following attributes:
.P
\fBformat\fP \fIstring\fP
.RS
The format of the clock. See \fBstrftime\fP(3).
.RE
.P
\fBzone\fP \fIstring\fP
.RS
The time zone of the clock. See \fBtzset\fP(3).
.RE
.P
\fBwidth\fP \fIint\fP
.RS
The width of the clock. 0 indicates that the width should be determined
from the length of the text to be displayed.
.RE
.P
\fBheight\fP \fIint\fP
.RS
The height of the clock. 0 indicates that the height should be determined
from the font used.
.RE
.RE
.P
.B Dock
.RS
Add a dock for system notifications. This can be used by those programs
that use the _NET_SYSTEM_TRAY_Sn selection. The size of the Dock is
dynamic based on the size of the tray and the number of items contained.
Only one Dock is allowed per instance of JWM. This tag supports the
following attributes:
.P
\fBwidth\fP \fIint\fP
.RS
The maximum width of an item contained in the dock. This defaults to
the width or height of the tray (whichever is smaller).
.RE
.P
\fBspacing\fP \fIint\fP
.RS
The spacing of items contained in the dock (in pixels).
This defaults to 0.
.RE
.RE
.P
.B Pager
.RS
Add a pager to the tray.
A pager shows a miniature representation of a desktop.
When over the pager, the scroll wheel will switch desktops.
Holding down the right mouse button allows you
to drag a window around in the pager which changes its position on the
real desktop.
You can also drag a window in the pager from one desktop to another.
This tag supports the following attributes:
.P
\fBlabeled\fP \fIbool\fP
.RS
Determines if the pager has text labels. Default is false.
.RE
.P
Also see the \fBPAGER STYLE\fP section for more information.
.RE
.P
.B Spacer
.RS
Add empty space to the tray.
This tag supports the following attributes:
.P
\fBwidth\fP \fIint\fP
.RS
The width of the spacer (0 to fill all available space). 0 is the default.
.RE
.P
\fBheight\fP \fIint\fP
.RS
The height of the spacer (0 to fill all available space). 0 is the default.
.RE
.RE
.P
.B Swallow
.RS
Swallow a program into the tray. The text of this tag gives the
command to run.
This tag supports the following attributes:
.P
\fBname\fP \fIstring\fP
.RS
The name of the program to swallow. This attribute is required.
.RE
.P
\fBwidth\fP \fIint\fP
.RS
The width of the swallowed program. 0 indicates that the width should
be determined from the tray and size requested from the program. 0 is
the default.
.RE
.P
\fBheight\fP \fIint\fP
.RS
The height of the swallowed program. 0 indicates that the height should
be determined from the tray and the size requested from the program. 0 is
the default.
.RE
.RE
.P
.B TaskList
.RS
Add a task list to the tray.
This tag supports the following attributes:
.P
\fBheight\fP \fIint\fP
.RS
The height of an item in the task list. 0 indicates that the height
should be taken from the tray. The default is 0.
.RE
.P
\fBlabeled\fP \fIbool\fP
.RS
Determines if a label is shown for items in the task list.
The default is true.
.RE
.P
\fBlabelpos\fP \fIstring\fP
.RS
Determines the label position in the task list. The default is "right" where
the icon is on the left and the label is on the right.
Possible values are "right", "top" and "bottom". When the tray is vertical and "top"
or "bottom" is chosen, an alternate method for resizing the task list will be used.
.RE
.P
\fBmaxwidth\fP \fIint\fP
.RS
The maximum width of an item in the task list. 0 indicates no maximum.
The default is 0.
.RE
.RE
.P
.B TrayButton
.RS
Add a button to the tray. The text of this tag determines what action to
take when the button is clicked. Optionally, one or more \fBButton\fP tags
may be specified to bind actions to specific mouse buttons specified via the
\fBmask\fP attribute. By default, the button mask is "123".
The following actions are supported:
.P
\fBroot:\fP\fIn\fP
.RS
Show root menu \fIn\fP.
Note that the default TrayButton action is \fBroot:1\fP.
.RE
.P
\fBexec:\fP \fIstring\fP
.RS
Execute a command.
.RE
.P
\fBshowdesktop\fP
.RS
Minimize all windows on the current desktop.
.RE
.P
This tag supports the following attributes:
.P
\fBlabel\fP \fIstring\fP
.RS
A label to display. No default.
.RE
.P
\fBpopup\fP \fIstring\fP
.RS
A string to be displayed for a popup. This will default to the value
specified for \fBlabel\fP, if provided. If neither \fBpopup\fP nor
\fBlabel\fP are specified no popup will be shown.
.RE
.P
\fBicon\fP \fIstring\fP
.RS
An icon to display. No default.
.RE
.RE
.RE
.B INCLUDES
.RS
Other configuration files or the output of programs may be included under
the JWM tag via the \fBInclude\fP tag. The text of this tag specifies the
location of an additional configuration file or program. The path may be
relative to the location JWM was started, an absolute path, or a path
referencing an environment variable (using '$').
If the text starts with "exec:", the specified program is executed and
its output is used.
The format of the configuration file or program
output is the same as the main configuration file.
.RE
.B "GROUP SETTINGS"
.RS
Program groups allow one to specify options which apply to a group of
programs by name, class, window type and machine. A program group is created
with the \fBGroup\fP tag. As many program groups can be created as desired.
If one or more \fBName\fP tags is specified, at least one name must
match. Likewise, if one or more \fBClass\fP tags is specified, at least
one class must match.
JWM matches using extended POSIX regular expressions for both \fBName\fP
and \fBClass\fP tags. See \fBregex\fP(7).
Within the \fBGroup\fP tag the following tags are supported:
.P
.B Name
.RS
The window name of a program to match to be in this group (the
first string in WM_CLASS).
.RE
.B Class
.RS
The window class for a program to match to be in this group (the
second string in WM_CLASS).
.RE
.B Type
.RS
The window type for a program to match to be in this group. Possible
values are desktop, dialog, dock, menu, normal, notification, splash,
toolbar, utility.
.RE
.B Machine
.RS
The machine on which a program runs to match to be in this group.
(the string WM_CLIENT_MACHINE)
.RE
.B Title
.RS
The window title for a program to match to be in this group (string in WM_NAME)
.RE
.B Option
.RS
An option for this group. Possible options are:
.P
.B aerosnap
.RS
Enable auto-maximization when a window is dragged to the corner of the
screen.
.RE
.P
.B border
.RS
Causes windows in this group to have a border.
.RE
.P
.B centered
.RS
Center windows in this group upon initial placement instead of using
cascaded placement.
.RE
.P
.B constrain
.RS
Constrain windows in this group to the screen.
.RE
.P
\fBdesktop:\fP\fI#\fP
.RS
The desktop on which windows in this group will be started.
.RE
.P
.B drag
.RS
Do not pass mouse events to the window. Instead, use the mouse to
move/resize the window.
.RE
.P
.B fixed
.RS
Fix windows in this group to their initial desktop.
This causes the current desktop to change when the window is activated
rather than the default behavior of bringing the window to the current
desktop.
.RE
.P
.B fullscreen
.RS
Make windows in this group initially fullscreen.
.RE
.P
.B height:\fI#\fP
.RS
Set the initial window height (in pixels).
.RE
.P
.B hmax
.RS
Make windows in this group maximize horizontally.
.RE
.P
\fBicon:\fP\fIstring\fP
.RS
The icon to be used for windows in this group.
.RE
.P
.B ilist
.RS
Ignore the program-specified list setting for windows in this group.
If specified with \fBnolist\fP, windows will not be listed in the task
list, otherwise windows will be listed.
.RE
.P
.B iignore
.RS
Ignore the size increment hint when maximizing windows in this group.
.RE
.P
.B ipager
.RS
Ignore the program-specified pager setting for windows in this group.
If specified with \fBnopager\fP, windows will not be shown in the pager,
otherwise windows will be shown.
.RE
.P
\fBlayer:\fP\fIstring\fP
.RS
The layer on which windows in this group will be started.
Valid options are \fBbelow\fP, \fBnormal\fP, and \fBabove\fP
.RE
.P
.B maximized
.RS
Make windows in this group initially maximized.
.RE
.P
.B minimized
.RS
Make windows in this group initially minimized.
.RE
.P
.B noborder
.RS
Causes windows in this group to be displayed without a border.
.RE
.P
.B noclose
.RS
Prevent windows in this group from being closed.
.RE
.P
.B nodrag
.RS
Disable mod1+drag moving/resizing for windows in this group.
.RE
.P
.B nofocus
.RS
Prevents windows in the group from grabbing the focus when mapped.
.RE
.P
.B nofullscreen
.RS
Prevent windows in this group from being fullscreen.
.RE
.P
.B nolist
.RS
Causes the tray to ignore windows in this group when the window
is initially mapped.
.RE
.P
.B nopager
.RS
Causes the pager to ignore windows in this group.
.RE
.P
.B nomax
.RS
Prevent windows in this group from being maximized.
.RE
.P
.B nomaxborder
.RS
Do not show a border on maximized windows in this group.
.RE
.P
.B nomaxtitle
.RS
Do not show a title bar on maximized windows in this group.
.RE
.P
.B nomin
.RS
Prevent windows in this group from being minimized.
.RE
.P
.B nomove
.RS
Prevent windows in this group from being moved.
.RE
.P
.B noresize
.RS
Prevent windows in this group from being resized.
.RE
.P
.B noshade
.RS
Prevent windows in this group from being shaded.
.RE