summaryrefslogtreecommitdiffstats
path: root/gnome2-user-guide/C/goscustdesk.xml
blob: c3874e03213e667c7135f76ecffd1225b77677d5 (plain)
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
<chapter id="goscustdesk-6">
  <title>Using the Basic Preference Tools</title>
  <highlights>
    <para>The basic preference tools enable you to customize your
desktop background, and to configure your keyboard settings and your mouse
settings. You can use the basic preference tools to configure shortcut keys,
to set your sound preferences, and to configure your network proxy. You can
also use the basic preference tools to customize your screensaver, choose
a theme and fonts for your desktop environment, and to customize your application
menubars and toolbars. You can also customize window focus behavior.</para>
    <para>This chapter describes how to use the basic preference tools to customize
your desktop environment.</para>
  </highlights>
  <sect1 id="goscustdesk-37">
    <title>Opening a Basic Preference Tool</title>
    <para>You can open one of the basic preference tools in either of the following
ways:</para>
    <itemizedlist>
      <listitem>
        <para>From the <guimenu>Desktop Preferences</guimenu> menu</para>
        <para>Choose <menuchoice><guimenu>Applications</guimenu><guimenuitem>Desktop Preferences</guimenuitem></menuchoice>. Choose the preference tool
that you require from the submenu. The dialog for the tool is displayed.</para>
      </listitem>
      <listitem>
        <para>From the <guilabel>Start Here</guilabel> location</para>
        <para>Open a <application>Nautilus</application> file manager window, then
choose <menuchoice><guimenu>Go</guimenu><guimenuitem>Start Here</guimenuitem></menuchoice>. Alternatively, double-click on the <guilabel>Start Here</guilabel>
object on the desktop. The <guilabel>Start Here</guilabel> location is displayed.
Double-click on the <guilabel>Desktop Preferences</guilabel> object in the
file manager window to display your preference tools.</para>
        <para>Double-click on the tool that you require. The dialog for the tool is
displayed.</para>
      </listitem>
    </itemizedlist>
  </sect1>
  <sect1 id="goscustdesk-7">
    <title>Customizing the Desktop Background</title>
    <indexterm>
      <primary>desktop</primary>
      <secondary>customizing background</secondary>
    </indexterm>
    <indexterm>
      <primary>desktop environment preference tools</primary>
      <see>preference tools</see>
    </indexterm>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Background</secondary>
    </indexterm>
    <indexterm>
      <primary>backgrounds</primary>
      <secondary>customizing desktop background</secondary>
    </indexterm>
    <para>The desktop background is the image or color that is applied
to your desktop. You can customize the desktop background in the following
ways:</para>
    <itemizedlist>
      <listitem>
        <para>Select an image for the desktop background. The image is superimposed
on the desktop background color. The desktop background color is visible if
you select a transparent image, or if the image does not cover the entire
desktop.</para>
      </listitem>
      <listitem>
        <para>Select a color for the desktop background. You can select
a solid color, or create a gradient effect with two colors. A gradient effect
is a visual effect where one color blends gradually into another color. </para>
      </listitem>
    </itemizedlist>
    <para>You can also change the appearance of your desktop background from within
the <application>Nautilus</application> file manager.</para>
    <para><xref linkend="goscustdesk-TBL-14"/> lists the background settings that
you can configure.</para>
    <table frame="topbot" id="goscustdesk-TBL-14">
      <title>Settings for Desktop Background</title>
      <tgroup cols="2" colsep="1" rowsep="1">
        <colspec colname="colspec0" colwidth="18.86*"/>
        <colspec colname="colspec1" colwidth="47.14*"/>
        <thead>
          <row>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Element</para>
            </entry>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Function</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guibutton>Select picture</guibutton>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Choose an image to display on the desktop. To
choose an image, click on the <guibutton>Select picture</guibutton> button.
An image selector dialog is displayed. Use the dialog to choose an image.
When you choose an image, click <guibutton>OK</guibutton>. </para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Picture Options</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>To specify how to display the image, select
one of the following options:</para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Wallpaper</guilabel>: Repeats the image to cover
the desktop.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Centered</guilabel>: Displays the image in the middle
of the desktop.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Scaled</guilabel>: Enlarges the image until the
image meets the screen edges, and maintains the relative dimensions of the
image.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Stretched</guilabel>: Enlarges the image to cover
the desktop,  and does not maintain the relative dimensions of the image.</para>
                </listitem>
                <listitem>
                  <para><guilabel>No Picture</guilabel>: Displays no image.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Background Style</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>To specify a color scheme, use  the options
in the <guilabel>Background Style</guilabel> drop-down list, and the color
selector buttons.</para>
              <para>You can specify a color scheme in one of the
following ways:</para>
              <itemizedlist>
                <listitem>
                  <para>Choose <guilabel>Solid color</guilabel> from the <guilabel>Background Style</guilabel> drop-down list to specify a single color for the
desktop background. </para>
                  <para>To choose the color that you require, click on the <guibutton>Color</guibutton>  button. The <guilabel>Pick a Color</guilabel> dialog is displayed.
Choose a color, then click <guibutton>OK</guibutton>.</para>
                </listitem>
                <listitem>
                  <para>Choose <guilabel>Horizontal gradient</guilabel> from the <guilabel>Background Style</guilabel> drop-down list. This option creates a gradient
effect from the left screen edge to the right screen edge.</para>
                  <para>Click on the <guibutton>Left Color</guibutton> button  to display the <guilabel>Pick a Color</guilabel> dialog. Choose the color that you want to appear at
the left edge.</para>
                  <para>Click on the <guibutton>Right Color</guibutton> button. Choose the color
that you want to appear at the right edge.</para>
                </listitem>
                <listitem>
                  <para>Choose <guilabel>Vertical gradient</guilabel> from the <guilabel>Background Style</guilabel> drop-down list. This creates a gradient effect
from the top   screen edge to the bottom screen edge.</para>
                  <para>Click on the <guibutton>Top Color</guibutton> button to display the <guilabel>Pick a Color</guilabel> dialog. Choose the color that you want to appear at
the top edge.</para>
                  <para>Click on the <guibutton>Bottom Color</guibutton> button. Choose the
color that you want to appear at the bottom edge.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
  <sect1 id="goscustdesk-84">
    <title>Setting File Management Preferences</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>File Management</secondary>
    </indexterm>
    <indexterm>
      <primary>file manager</primary>
      <secondary>preferences</secondary>
      <tertiary>preference tool</tertiary>
    </indexterm>
    <para>Use the <application>File Management</application> preference tool to set your <application>Nautilus</application> file manager preferences. You can also set your file manager
preferences in the <guilabel>File Management</guilabel> preferences dialog,
which you can open from the file manager application. For information on the
settings in the <guilabel>File Management</guilabel> preferences dialog and <application>File Management</application> preference tool, see <citetitle>Nautilus File
Manager</citetitle>.</para>
  </sect1>
  <sect1 id="goscustdesk-38">
    <title>Choosing Default Fonts</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Font</secondary>
    </indexterm>
    <indexterm>
      <primary>fonts</primary>
      <secondary>desktop</secondary>
    </indexterm>
    <indexterm>
      <primary>fonts</primary>
      <secondary>applications</secondary>
    </indexterm>
    <indexterm>
      <primary>fonts</primary>
      <secondary>window title</secondary>
    </indexterm>
    <indexterm>
      <primary>fonts</primary>
      <secondary>terminal</secondary>
    </indexterm>
    <indexterm>
      <primary>fonts</primary>
      <secondary>rendering</secondary>
    </indexterm>
    <para>Use the <application>Font</application> preference tool
to select the fonts to use in your applications, windows, terminals, and desktop.</para>
    <para><xref linkend="goscustdesk-TBL-26"/> lists the font settings that you
can configure.</para>
    <table frame="topbot" id="goscustdesk-TBL-26">
      <title>Settings for Fonts</title>
      <tgroup cols="2" colsep="1" rowsep="1">
        <colspec colname="colspec18" colwidth="19.21*"/>
        <colspec colname="colspec19" colwidth="46.79*"/>
        <thead>
          <row>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Option</para>
            </entry>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Function</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Application
font</guilabel>
              </para>
            </entry>
            <entry colsep="0" rowsep="0" valign="top">
              <para>Click on the font selector button to select a font to use in your applications.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Desktop font</guilabel>
              </para>
            </entry>
            <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
              <para>Click on the font selector button to select
a font to use on your desktop only.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Window title font</guilabel>
              </para>
            </entry>
            <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
              <para>Click on the font selector button to select
a font to use in the titlebars of your windows.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Terminal font</guilabel>
              </para>
            </entry>
            <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
              <para>Click on the font selector button to select
a font to use in the <application>Terminal</application> application</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Font Rendering</guilabel>
              </para>
            </entry>
            <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
              <para>To specify how to render fonts on your screen,
select one of the following options:</para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Monochrome</guilabel>: Renders fonts in black and
white only. The edges of characters might appear jagged in some cases because
the characters  are not antialiased. <firstterm>Antialiasing</firstterm> is
an effect that is applied to the edges of characters to make the characters
look smoother.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Best shapes</guilabel>: Antialiases fonts where
possible. Use this option for standard Cathode Ray Tube (CRT) monitors.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Best contrast</guilabel>: Adjusts fonts to give
the sharpest possible contrast, and also antialiases fonts, so that characters
have smooth edges. This option might enhance the accessibility of the desktop
environment to  users with visual impairments.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Subpixel smoothing (LCDs)</guilabel>: Uses techniques
that exploit the shape of individual Liquid Crystal Display (LCD) pixels to
render fonts smoothly. Use this option for LCD or flat-screen displays.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
          <row>
            <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
              <para>
                <guibutton>Details</guibutton>
              </para>
            </entry>
            <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
              <para>Click on this button to specify further details of how
to render fonts on your screen. </para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Resolution (dots per inch)</guilabel>: Use the spin
box to specify the resolution to use when your screen renders fonts.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Smoothing</guilabel>: Select one of the options
to specify how to antialias fonts.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Hinting</guilabel>:  <firstterm>Hinting</firstterm>
is a font-rendering technique that improves the quality of fonts at small
sizes and an at low screen resolutions. Select one of the options to specify
how to apply hinting your fonts.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Subpixel order</guilabel>: Select one of the options
to specify the subpixel color order for your fonts. Use this option for LCD
or flat-screen displays.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
    <sect2 id="goscustdesk-83">
      <title>Previewing Fonts</title>
      <indexterm>
        <primary>fonts</primary>
        <secondary>previewing</secondary>
      </indexterm>
      <para>You can use the file manager to preview fonts. To preview fonts, perform
the following steps:</para>
      <orderedlist>
        <listitem>
          <para>Open a file manager window.</para>
        </listitem>
        <listitem>
          <para>Enter the URI <command>fonts:///</command> in the location
bar. The fonts are displayed as icons in the view pane.</para>
        </listitem>
        <listitem>
          <para>Double-click on an icon to display a preview of the font.</para>
        </listitem>
      </orderedlist>
    </sect2>
  </sect1>
  <sect1 id="goscustperiph-2">
    <title>Configuring Keyboard Settings</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Keyboard</secondary>
    </indexterm>
    <indexterm>
      <primary>keyboard</primary>
      <secondary>configuring general
preferences</secondary>
    </indexterm>
    <para>Use the <application>Keyboard</application>
preference tool to select the autorepeat settings for your keyboard, and to
configure typing break settings. </para>
    <para>You can customize the settings for the <application>Keyboard</application>
preference tool in the following functional areas:</para>
    <itemizedlist>
      <listitem>
        <para>
          <guilabel>Keyboard</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>Typing Break</guilabel>
        </para>
      </listitem>
    </itemizedlist>
    <sect2 id="goscustdesk-40">
      <title>Keyboard Settings</title>
      <para>Use the <guilabel>Keyboard</guilabel> tabbed section to set general
keyboard preferences. To start the <application>Keyboard</application><emphasis>accessibility</emphasis> preference tool, that is, <application>AccessX</application>,
click on the <guibutton>Accessibility</guibutton> button.</para>
      <para><xref linkend="goscustperiph-TBL-3"/> lists the keyboard settings that
you can configure.</para>
      <table frame="topbot" id="goscustperiph-TBL-3">
        <title>Settings for Keyboard</title>
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="colspec18" colwidth="19.21*"/>
          <colspec colname="colspec19" colwidth="46.79*"/>
          <thead>
            <row>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Option</para>
              </entry>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Keyboard repeats
when key is held down</guilabel>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Select this option to enable keyboard repeat. If keyboard
repeat is enabled, when you press-and-hold a key, the action associated with
the key is performed repeatedly. For example, if you press-and-hold a character
key, the character is typed repeatedly.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Delay</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Select the delay from the time you press a key to the time
that the action repeats.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Speed</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Select the speed at which the action is repeated. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Blinks in text boxes and fields</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Select this option to enable the
cursor to blink in fields and text boxes.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Speed</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Use the slider to specify the speed at which the cursor
blinks in fields and text boxes.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-86">
      <title>Typing Break Settings</title>
      <para>Use the <guilabel>Typing Break</guilabel> tabbed section to set typing
break preferences. To start the <application>Keyboard</application><emphasis>accessibility</emphasis> preference tool, that is, <application>AccessX</application>,
click on the <guibutton>Accessibility</guibutton> button.</para>
      <para><xref linkend="goscustdesk-TBL-87"/> lists the typing break
settings that you can configure.</para>
      <table frame="topbot" id="goscustdesk-TBL-87">
        <title>Typing Break Settings</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colwidth="50*"/>
          <colspec colwidth="50*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Option</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Lock screen to enforce typing break</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Select this option to
lock the screen when you are due a typing break.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Work interval lasts</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Use the spin box to specify how long you can work
before a typing break occurs.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Break interval lasts</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Use the spin box to specify the length of your typing
breaks.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Allow postponing of breaks</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Select this option if you want to be able to postpone
typing breaks.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
  </sect1>
  <sect1 id="goscustdesk-39">
    <title>Customizing Keyboard Shortcuts</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Keyboard Shortcuts</secondary>
    </indexterm>
    <indexterm>
      <primary>shortcut keys</primary>
      <secondary>configuring</secondary>
    </indexterm>
    <indexterm>
      <primary>keyboard shortcuts</primary>
      <secondary>configuring</secondary>
    </indexterm>
    <indexterm>
      <primary>hot keys</primary>
      <secondary>configuring</secondary>
    </indexterm>
    <para>A <firstterm>keyboard shortcut</firstterm> is a key or combination of keys that provides
an alternative to standard ways of performing an action. </para>
    <para>Use the <application>Keyboard Shortcuts</application> preference tool
to display the default keyboard shortcuts. You can customize the default keyboard
shortcuts to your requirements. </para>
    <para><xref linkend="goscustdesk-TBL-5"/> lists the keyboard shortcut settings that you
can customize.</para>
    <table frame="topbot" id="goscustdesk-TBL-5">
      <title>Default Settings for Keyboard Shortcuts</title>
      <tgroup cols="2" colsep="0" rowsep="0">
        <colspec colname="colspec0" colwidth="36.11*"/>
        <colspec colname="colspec1" colwidth="63.89*"/>
        <thead>
          <row rowsep="1">
            <entry valign="top">
              <para>Option</para>
            </entry>
            <entry valign="top">
              <para>Function</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colname="colspec0" valign="top">
              <para>
                <guilabel>Text editing shortcuts</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" valign="top">
              <para>Select
one of the following settings:</para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Default</guilabel>: Use this setting for standard
shortcut keys.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Emacs</guilabel>: Use this setting for <application>Emacs</application> shortcut keys.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" valign="top">
              <para>
                <guilabel>Desktop shortcuts</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" valign="top">
              <para>This
table lists actions and the shortcut keys that are associated with each action. </para>
              <para>To change the shortcut keys for an action, click on the action
to select the action, then click on the shortcut for the action. Press the
keys that you want to associate with the action.</para>
              <para>To disable the
shortcut keys for an action, click on the action to select the action, then
click on the shortcut for the action. Press <keycap>Back Space</keycap>.</para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
  <sect1 id="goscustuserinter-2">
    <title>Customizing Menus and Toolbars in Applications</title>
    <indexterm>
      <primary>toolbars, customizing appearance</primary>
    </indexterm>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Menus &amp; Toolbars</secondary>
    </indexterm>
    <indexterm>
      <primary>menus</primary>
      <secondary>in applications,
customizing appearance</secondary>
    </indexterm>
    <para>You can use the <application>Menus &amp; Toolbars</application> preference tool to customize the appearance
of menus, menubars, and toolbars for GNOME-compliant applications.</para>
    <para><xref linkend="goscustuserinter-TBL-8"/> lists the menu and toolbar settings that
you can customize for GNOME-compliant applications.</para>
    <table frame="topbot" id="goscustuserinter-TBL-8">
      <title>Settings for Customizing Applications</title>
      <tgroup cols="2" colsep="1" rowsep="1">
        <colspec colname="colspec0" colwidth="18.86*"/>
        <colspec colname="colspec1" colwidth="47.14*"/>
        <thead>
          <row>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Option</para>
            </entry>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Function</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Show icons in menus</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select this option to display an icon beside
each item in a menu. Some menu items do not have an icon.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Detachable toolbars</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select this option if you want to move toolbars
from application windows to any location on the screen. If you select this
option, handles are displayed on the left side of the toolbars in your applications.
To move a toolbar, click-and-hold on the handle, then drag the toolbar to
the new location.</para>
              <para/>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Toolbar button labels</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Choose one of the following options to specify
what to display on the toolbars in your GNOME-compliant applications:</para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Text Below Icons</guilabel>: Select this option
to display toolbars with text as well as an icon on each button. </para>
                </listitem>
                <listitem>
                  <para><guilabel>Text Beside Icons</guilabel>: Select this option
to display toolbars with an icon only on each button, and with text on the
most important buttons.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Icons Only</guilabel>: Select this option to display
toolbars with an icon only on each button.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Text Only</guilabel>: Select this option to display
toolbars with text only on each button.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
  <sect1 id="goscustperiph-5">
    <title>Configuring Mouse Settings</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Mouse</secondary>
    </indexterm>
    <indexterm>
      <primary>mouse</primary>
      <secondary>configuring</secondary>
    </indexterm>
    <para>Use the <application>Mouse</application> preference tool
to configure your mouse for right-hand use or for left-hand use. You can also
specify the speed and sensitivity of mouse movement.</para>
    <para>You can customize the settings for the <application>Mouse</application>
preference tool in the following functional areas:</para>
    <itemizedlist>
      <listitem>
        <para>
          <guilabel>Buttons</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>Cursors</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>Motion</guilabel>
        </para>
      </listitem>
    </itemizedlist>
    <sect2 id="goscustdesk-55">
      <title>Buttons Settings</title>
      <para>Use the <guilabel>Buttons</guilabel> tabbed section to specify whether
the mouse buttons are configured for left-hand use. You can also specify the
delay between clicks for a double-click.</para>
      <para><xref linkend="goscustperiph-TBL-6"/> lists the mouse button settings
that you can configure.</para>
      <table frame="topbot" id="goscustperiph-TBL-6">
        <title>Settings for Mouse Buttons</title>
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="colspec18" colwidth="19.21*"/>
          <colspec colname="colspec19" colwidth="46.79*"/>
          <thead>
            <row>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Option</para>
              </entry>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Left-handed
mouse</guilabel>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Select this option to configure your mouse for left-hand use. When you configure
your mouse for left-hand use, the functions of the left mouse button and the
right mouse button are swapped.</para>
              </entry>
            </row>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Delay</guilabel>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Use the slider to specify
the amount of time that can pass between clicks when you double-click. If
the interval between the first and second clicks exceeds the time that is
specified here, the action is not interpreted as a double-click. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-54">
      <title>Pointer Settings</title>
      <para>Use the <guilabel>Cursors</guilabel> tabbed section to set your mouse
pointer preferences.</para>
      <para><xref linkend="goscustdesk-TBL-45"/> lists the mouse pointer settings
that you can configure:</para>
      <table frame="topbot" id="goscustdesk-TBL-45">
        <title>Settings for Mouse Pointers</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="50*"/>
          <colspec colname="colspec1" colwidth="50*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Option</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Cursor Theme</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Select the mouse pointer theme that you require
from the list box. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>
                  <guilabel>Show position
of cursor when the Control key is pressed</guilabel>
                </para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Select this option to enable a mouse
pointer animation when you press and release <keycap>Ctrl</keycap>. This feature
can assist you to locate the mouse pointer.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-53">
      <title>Motion Settings</title>
      <para>Use the <guilabel>Motion</guilabel> tabbed section to set your preferences
for mouse movement.</para>
      <para><xref linkend="goscustdesk-TBL-47"/> lists the mouse motion settings
that you can configure:</para>
      <table frame="topbot" id="goscustdesk-TBL-47">
        <title>Settings for Mouse Motion</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colwidth="30.10*"/>
          <colspec colwidth="69.90*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Setting</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Acceleration</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Use the slider to specify the speed at which your
mouse pointer moves on your screen when you move your mouse.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Sensitivity</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Use the slider to specify how sensitive your mouse
pointer is to movements of your mouse.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Threshold</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Use the slider to specify the distance that you
must move an item before the move action is interpreted as a drag-and-drop
action.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
  </sect1>
  <sect1 id="goscustdesk-50">
    <title>Configuring Network Proxy Settings</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Network Proxy</secondary>
    </indexterm>
    <indexterm>
      <primary>network proxy</primary>
      <secondary>setting
preferences</secondary>
    </indexterm>
    <indexterm>
      <primary>proxy</primary>
      <secondary>setting preferences</secondary>
    </indexterm>
    <para>The <application>Network
Proxy</application> preference tool enables you to configure how your system
connects to networks. You can configure the desktop environment to connect
to a <firstterm>proxy server</firstterm>, and specify the details of the proxy
server. A proxy server is a server that intercepts requests to another server,
and fulfills the request itself, if it can. You can enter the Domain Name
Service (DNS) name or the Internet Protocol (IP) address of the proxy server.
A <firstterm>DNS name</firstterm> is a unique alphabetic identifier for a
computer on a network. An <firstterm>IP address</firstterm> is a unique numeric
identifier for a computer on a network. </para>
    <para><xref linkend="goscustdesk-TBL-52"/> lists the network proxy settings
that you can configure.</para>
    <table frame="topbot" id="goscustdesk-TBL-52">
      <title>Network Proxy Settings</title>
      <tgroup cols="2" colsep="0" rowsep="0">
        <colspec colname="colspec2" colwidth="35.09*"/>
        <colspec colname="colspec3" colwidth="64.91*"/>
        <thead>
          <row rowsep="1">
            <entry valign="top">
              <para>Option</para>
            </entry>
            <entry valign="top">
              <para>Function </para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>Direct internet
connection</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Select this option if you want to connect directly to the Internet, without
a proxy server.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2">
              <para>
                <guilabel>Manual proxy configuration</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Select
this option if you want to connect to the Internet through a proxy server,
and you want to configure the proxy server manually.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>HTTP proxy</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Enter the DNS name, or the IP
address of the proxy server to use when you request a HTTP service. Enter
the port number of the HTTP service on the proxy server in the <guilabel>Port</guilabel> spin box.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>Secure HTTP proxy</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Enter
the DNS name, or the IP address of the proxy server to use when you request
a Secure HTTP service. Enter the port number of the Secure HTTP service on
the proxy server in the <guilabel>Port</guilabel> spin box.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>FTP proxy</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Enter the DNS name, or the IP
address of the proxy server to use when you request a FTP service. Enter the
port number of the FTP service on the proxy server in the <guilabel>Port</guilabel>
spin box.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>Socks host</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Enter the DNS name, or the IP
address of the Socks host to use. Enter the port number for the Socks protocol
on the proxy server in the <guilabel>Port</guilabel> spin box.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>Automatic proxy
configuration</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Select this option if you want to connect to the Internet through a proxy
server, and you want to configure the proxy server automatically.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec2" valign="top">
              <para>
                <guilabel>Autoconfiguration
URL</guilabel>
              </para>
            </entry>
            <entry colname="colspec3" valign="top">
              <para>Enter the URL that contains the information required to configure the proxy
server automatically. </para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
  <sect1 id="goscustdesk-65">
    <title>Setting Screensaver Preferences</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Screensaver</secondary>
    </indexterm>
    <indexterm>
      <primary>sessions</primary>
      <secondary>configuring screensaver</secondary>
    </indexterm>
    <indexterm>
      <primary>screensaver, setting preferences</primary>
    </indexterm>
    <indexterm>
      <primary>XScreenSaver</primary>
      <see>screensaver</see>
    </indexterm>
    <para>A screensaver is an application that you can use to
replace the image on your screen when the screen is not in use. You can use
screensavers in the following ways:</para>
    <itemizedlist>
      <listitem>
        <para>Activate after a specified period of idle time.</para>
      </listitem>
      <listitem>
        <para>Activate when you lock your screen.</para>
      </listitem>
      <listitem>
        <para>Manage power used by your monitor when your system is idle.</para>
      </listitem>
    </itemizedlist>
    <para>You can customize the settings for the <application>Mouse</application>
preference tool in the following functional areas:</para>
    <itemizedlist>
      <listitem>
        <para>
          <guilabel>Display Modes</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>Advanced</guilabel>
        </para>
      </listitem>
    </itemizedlist>
    <sect2 id="goscustdesk-59">
      <title>Display Modes Settings</title>
      <para>Use the <guilabel>Display Modes</guilabel> tabbed section to set display
mode preferences.</para>
      <para><xref linkend="goscustdesk-TBL-63"/> lists the display mode settings
that you can configure.</para>
      <table frame="topbot" id="goscustdesk-TBL-63">
        <title>Settings for Screensaver Display Mode</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec2" colwidth="35.09*"/>
          <colspec colname="colspec3" colwidth="64.91*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Setting</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Mode</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Use the drop-down list to specify
the behavior of the screensaver application. Select from the following options:</para>
                <itemizedlist>
                  <listitem>
                    <para><guilabel>Disable Screen Saver</guilabel>: Select this option
if you do not want to use the screensaver application.</para>
                  </listitem>
                  <listitem>
                    <para><guilabel>Blank Screen Only</guilabel>: Select this option
if you want your screen to become blank when your screen locks.</para>
                  </listitem>
                  <listitem>
                    <para><guilabel>Only One Screen Saver</guilabel>: Select this option
if you want to display a single screensaver display from the  display list
when your screen locks.</para>
                  </listitem>
                  <listitem>
                    <para><guilabel>Random Screen Saver</guilabel>: Select this option
if you want to display a random selection of screensaver displays from the
screensaver display list when your screen locks. </para>
                  </listitem>
                </itemizedlist>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>Display list</para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select the screensaver display
that you require from the list.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Blank After</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Specify how long to wait after the last use of the
mouse or keyboard, to activate the screensaver.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Cycle After</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Specify how long to show a particular screensaver
display before the next display.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Lock Screen After</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Select this option if you want the screen to lock
after the screensaver is activated. Use the spin box to specify the delay
between the activation of the screensaver and when the screen locks.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guibutton>Preview</guibutton>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Click on this button to preview
the screensaver display that is selected in the screensaver display list.
To stop the preview, press any key or click a mouse button.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guibutton>Settings</guibutton>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Click on this button to display
the options for the screensaver display that is selected in the screensaver
display list. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-60">
      <title>Advanced Settings</title>
      <para>Use the <guilabel>Advanced</guilabel> tabbed section to set advanced
screensaver preferences.</para>
      <para><xref linkend="goscustdesk-TBL-64"/> lists the advanced screensaver settings
that you can configure.</para>
      <table frame="topbot" id="goscustdesk-TBL-64">
        <title>Advanced Screensaver Settings</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec2" colwidth="40.38*"/>
          <colspec colname="colspec3" colwidth="59.62*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Setting</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Grab Desktop Images</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Some
screensavers can take a screenshot of your screen, then manipulate the screenshot
to create your screensaver display. Select this option to enable screensavers
to take a screenshot of your screen.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Grab Video Frames</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Some
screensavers can capture a frame of video, then manipulate the captured image
to create your screensaver display. If your system has a video capture card,
select this option to enable screensavers to capture a frame of video.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Choose Random
Image</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option to enable screensavers to use images from a directory that
you select. Type the path for the directory in the field. Alternatively, click <guibutton>Browse</guibutton> to display a dialog from which you can select a directory.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Verbose Dialognostics</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select
this option if you want to display screensaver diagnostic information.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Display Subprocess
Errors</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option if you want to display errors related to screensaver subprocesses
on screen.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Display Splash
Screen at Startup</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option to if you want <application>Xscreensaver</application>
to display a splash dialog when <application>Xscreensaver</application> starts.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Power Management
Enabled</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option to enable power management of your monitor. Power management
can reduce energy consumption by your monitor when you are not using the monitor.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Standby After</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Specify
how long to wait to put the monitor in standby mode. When the monitor is in
standby mode, the screen is black.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Suspend After</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Specify
how long to wait to put the monitor in power-saving mode. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Off After</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Specify how long to wait to switch
off monitor. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Install Colormap</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select
this option to install a private colormap when the screensaver is active.
Use of a private colormap might improve the quality of the color in particular
screensaver displays.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Fade to Black
When Blanking</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option if you want your display to fade to black when the screensaver
activates.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para>
                  <guilabel>Fade from Black
When Unblanking</guilabel>
                </para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>Select this option if you want your display to fade from black to the screen
contents when the screensaver stops.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guilabel>Fade Duration</guilabel>
                </para>
              </entry>
              <entry valign="top">
                <para>Specify how long to take to fade to black when the
screensaver activates.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
  </sect1>
  <sect1 id="goscustdesk-70">
    <title>Setting Screen Resolution Preferences</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Screen Resolution</secondary>
    </indexterm>
    <para>Use the Screen Resolution preference tool to
specify the resolution settings for your screen. <xref linkend="goscustdesk-TBL-72"/>
lists the screen resolution settings that you can configure.</para>
    <table frame="topbot" id="goscustdesk-TBL-72">
      <title>Settings for Screen Resolution</title>
      <tgroup cols="2" colsep="0" rowsep="0">
        <colspec colname="colspec0" colwidth="50*"/>
        <colspec colname="colspec1" colwidth="50*"/>
        <thead>
          <row rowsep="1">
            <entry valign="top">
              <para>Setting</para>
            </entry>
            <entry valign="top">
              <para>Description</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry valign="top">
              <para>
                <guilabel>Resolution</guilabel>
              </para>
            </entry>
            <entry valign="top">
              <para>Select the resolution to use for the screen from
the drop-down list.</para>
            </entry>
          </row>
          <row>
            <entry valign="top">
              <para>
                <guilabel>Refresh rate</guilabel>
              </para>
            </entry>
            <entry valign="top">
              <para>Select the screen refresh rate to use for the screen
from the drop-down list.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" valign="top">
              <para>
                <guilabel>Make default for
this computer only</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" valign="top">
              <para>Select this option to make the screen resolution settings the default settings
for the system that you are logged in to only.</para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
  <sect1 id="goscustmulti-2">
    <title>Setting Sound Preferences</title>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Sound</secondary>
    </indexterm>
    <indexterm>
      <primary>sound</primary>
      <secondary>setting preferences</secondary>
    </indexterm>
    <indexterm>
      <primary>sound</primary>
      <secondary>associating
events with sounds</secondary>
    </indexterm>
    <indexterm>
      <primary>events, associating
sounds with</primary>
    </indexterm>
    <indexterm>
      <primary>sound server</primary>
    </indexterm>
    <para>The <application>Sound</application> preference tool enables
you to control when the GNOME sound server starts. You can also specify which
sounds to play when particular events occur.</para>
    <para>You can customize the settings for the <application>Sound</application>
preference tool in the following functional areas:</para>
    <itemizedlist>
      <listitem>
        <para>
          <guilabel>General</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>Sound Events</guilabel>
        </para>
      </listitem>
      <listitem>
        <para>
          <guilabel>System Bell</guilabel>
        </para>
      </listitem>
    </itemizedlist>
    <sect2 id="goscustmulti-3">
      <title>General Settings</title>
      <para>Use the <guilabel>General</guilabel> tabbed section of the <application>Sound</application> preference tool to specify when to launch the GNOME sound
server. You can also enable sound event functions.</para>
      <para><xref linkend="goscustmulti-TBL-4"/> lists the general sound settings
that you can configure.</para>
      <table frame="topbot" id="goscustmulti-TBL-4">
        <title>Settings for Sound</title>
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="colspec18" colwidth="19.21*"/>
          <colspec colname="colspec19" colwidth="46.79*"/>
          <thead>
            <row>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Option</para>
              </entry>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Enable sound
server startup</guilabel>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Select this option to start the GNOME sound server when you start a GNOME
session. When the sound server is active, the desktop environment can play
sounds.</para>
              </entry>
            </row>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Sounds for
events</guilabel>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Select this option to play sounds when particular events occur in your desktop
environment. You can select this option only if the <guilabel>Enable sound
server startup</guilabel> option is selected.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-48">
      <title>Sound Event Settings</title>
      <para>Use the <guilabel>Sound Events</guilabel> tabbed section of the <application>Sound</application> preference tool to associate particular sounds with particular
events. </para>
      <note>
        <para>You must select the <guilabel>Enable sound server startup</guilabel>
option, and the <guilabel>Sounds for events</guilabel> option before you can
access the <guilabel>Sound Events</guilabel> tabbed section.</para>
      </note>
      <para><xref linkend="goscustmulti-TBL-6"/> lists the sound events settings
that you can configure.</para>
      <table frame="topbot" id="goscustmulti-TBL-6">
        <title>Settings for Sound Events</title>
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="colspec18" colwidth="19.21*"/>
          <colspec colname="colspec19" colwidth="46.79*"/>
          <thead>
            <row>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Option</para>
              </entry>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para><guilabel>Sounds</guilabel> table</para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Use the <guilabel>Sounds</guilabel> table to
associate particular sounds with particular events. </para>
                <para>The <guilabel>Event</guilabel> column displays a hierarchical list of events that can occur.
To expand a category of events, click on the right arrow beside a category
of events.</para>
                <para>The <guilabel>File to play</guilabel> column lists
the sound file that plays when the event occurs.</para>
              </entry>
            </row>
            <row>
              <entry colsep="0" rowsep="0" valign="top">
                <para>
                  <guibutton>Play </guibutton>
                </para>
              </entry>
              <entry colsep="0" rowsep="0" valign="top">
                <para>Click on this button to play
the sound file that is associated with the selected event. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>Sound file drop-down combination box, <guibutton>Browse </guibutton></para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>To associate
a sound with an event, select the event in the <guilabel>Sounds</guilabel>
table. Enter the name of the sound file that you want to associate with the
selected event in the drop-down combination box. Alternatively, click <guibutton>Browse </guibutton> to display a <guilabel>Select sound file</guilabel> dialog.
Use the dialog to specify the sound file that you want to associate with the
selected event.</para>
                <note>
                  <para>You can only associate sound files in <filename>.wav</filename> format with events.</para>
                </note>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
    <sect2 id="goscustdesk-41">
      <title>System Bell Settings</title>
      <indexterm>
        <primary>keyboard</primary>
        <secondary>configuring sound preferences</secondary>
      </indexterm>
      <indexterm>
        <primary>sound</primary>
        <secondary>configuring
system bell preferences</secondary>
      </indexterm>
      <indexterm>
        <primary>system
bell</primary>
        <secondary>configuring preferences</secondary>
      </indexterm>
      <para>Use the <guilabel>System Bell</guilabel> tabbed section to set your preferences
for the system bell.</para>
      <para>Some applications play a bell sound to indicate a keyboard input error.
Use the options in the <guilabel>System Bell</guilabel> tabbed section to
configure the bell sound. <xref linkend="goscustdesk-TBL-1"/> lists the system
bell settings that you can configure.</para>
      <table frame="topbot" id="goscustdesk-TBL-1">
        <title>Settings for System Bell</title>
        <tgroup cols="2" colsep="1" rowsep="1">
          <colspec colname="colspec18" colwidth="19.21*"/>
          <colspec colname="colspec19" colwidth="46.79*"/>
          <thead>
            <row>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Option</para>
              </entry>
              <entry colsep="0" rowsep="1" valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0">
                <para>
                  <guilabel>Sound
an audible bell</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0">
                <para>Select this option to enable the system bell.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0" valign="top">
                <para>
                  <guilabel>Visual feedback</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0" valign="top">
                <para>Select this option to enable visual feedback
to indicate input errors. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0">
                <para>
                  <guilabel>Flash
window titlebar</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0">
                <para>Select this option if you want window titlebars to flash
to indicate an input error. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec18" colsep="0" rowsep="0">
                <para>
                  <guilabel>Flash
entire screen</guilabel>
                </para>
              </entry>
              <entry colname="colspec19" colsep="0" rowsep="0">
                <para>Select this option if you want the entire screen to flash
to indicate an input error. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </sect2>
  </sect1>
  <sect1 id="goscustdesk-12">
    <title>Customizing Themes in the Desktop Environment</title>
    <indexterm>
      <primary>themes</primary>
      <secondary>setting controls themes</secondary>
    </indexterm>
    <indexterm>
      <primary>themes</primary>
      <secondary>setting window
frame themes</secondary>
    </indexterm>
    <indexterm>
      <primary>themes</primary>
      <secondary>setting icons themes</secondary>
    </indexterm>
    <indexterm>
      <primary>windows</primary>
      <secondary>setting frame themes</secondary>
    </indexterm>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Theme</secondary>
    </indexterm>
    <para>A
theme is a group of coordinated settings that specifies the visual appearance
of a part of the desktop environment. You can choose themes to change the
appearance of the desktop environment. Use the <application>Theme</application>
preference tool to select a theme for your desktop environment. You can choose
from a list of available themes. The list of available themes includes several
themes for users with accessibility requirements. </para>
    <para>A theme contains settings that affect different parts of the GNOME desktop,
as follows:</para>
    <variablelist>
      <varlistentry>
        <term>Controls</term>
        <listitem>
          <para>        <indexterm>
          <primary>themes</primary>
          <secondary>controls options</secondary>
          <tertiary>introduction</tertiary>
        </indexterm>
          <indexterm>
            <primary>GTK+ themes</primary>
            <see>themes, controls options</see>
          </indexterm>

The controls setting for a theme determines the visual
appearance of windows, panels, and applets. The controls setting also determines
the visual appearance of the GNOME-compliant interface items that appear on
windows, panels, and applets, such as menus, icons, and buttons. Some of the
controls setting options that are available are designed for special accessibility
needs. You can choose an option for the controls setting from the <guilabel>Controls</guilabel> tabbed section in the <application>Theme</application>
preference tool.</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Window frame</term>
        <listitem>
          <indexterm>
            <primary>themes</primary>
            <secondary>window frame options</secondary>
            <tertiary>introduction</tertiary>
          </indexterm>
          <indexterm>
            <primary>Metacity themes</primary>
            <see>themes, window frame options</see>
          </indexterm>
          <para>The window frame setting
for a theme determines the appearance of the frames around windows only. You
can choose an option for the window frame setting from the <guilabel>Window
Border</guilabel> tabbed section in the <application>Theme</application> preference
tool.</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>Icon</term>
        <listitem>
          <indexterm>
            <primary>themes</primary>
            <secondary>icons options</secondary>
            <tertiary>introduction</tertiary>
          </indexterm>
          <indexterm>
            <primary>icon themes</primary>
            <see>themes, icons options</see>
          </indexterm>
          <para>The icon setting for a theme determines the appearance of
the icons on panels and the desktop background. You can choose an option for
the icon setting from the <guilabel>Icons</guilabel> tabbed section in the <application>Theme</application> preference tool.</para>
        </listitem>
      </varlistentry>
    </variablelist>
    <sect2 id="goscustdesk-61">
      <title>To Create a Custom Theme</title>
      <para>The themes that are listed in the <application>Theme</application> preferences
tool are different combinations of controls options, window frame options,
and icon options. You can create a custom theme that uses different combinations
of controls options, window frame options, and icon options.</para>
      <para>To create a custom theme, perform the following steps:</para>
      <orderedlist>
        <listitem>
          <para>To open the <application>Theme</application> preference tool,
choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Desktop
Preferences</guisubmenu><guimenuitem>Theme</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Select a theme in the list of themes.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Details</guibutton> button. A <guilabel>Theme Details</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Select the controls option that you want to use in the custom
theme from the list in the <guilabel>Controls</guilabel> tabbed section. The
list of available controls options includes several options for users with
accessibility requirements.</para>
        </listitem>
        <listitem>
          <para>Click on the <guilabel>Window Border</guilabel> tab to display
the <guilabel>Window Border</guilabel> tabbed section. Select the window frame
option that you want to use in the custom theme from the list of available
options. The list of available window frame options includes several options
for users with accessibility requirements.</para>
        </listitem>
        <listitem>
          <para>Click on the <guilabel>Icons</guilabel> tab to display the <guilabel>Icons</guilabel> tabbed section. Select the icons option that you want to
use in the custom theme from the list of available options. The list of available
icons options includes several options for users with accessibility requirements.</para>
        </listitem>
        <listitem>
          <para>Click <guibutton>Close</guibutton> to close the <guilabel>Theme Details</guilabel> dialog.</para>
        </listitem>
        <listitem>
          <para>On the <application>Theme</application> preferences tool,
click on the <guibutton>Save theme</guibutton> button. A <guilabel>Save theme
to disk</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Type a name and a short description for the custom theme in
the dialog, then click <guibutton>Save</guibutton>. The custom theme now appears
in your list of available themes.</para>
        </listitem>
      </orderedlist>
    </sect2>
    <sect2 id="goscustdesk-62">
      <title>To Install a New Theme</title>
      <para>You can add a theme to the list of available themes. The new theme must
be an archive file that is tarred and zipped. That is, the new theme must
be a <filename>.tar.gz</filename> file.</para>
      <para>To install a new theme, perform the following steps:</para>
      <orderedlist>
        <listitem>
          <para>To open the <application>Theme</application> preference tool,
choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Desktop
Preferences</guisubmenu><guimenuitem>Theme</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Install theme</guibutton> button.
An <guilabel>Install New Theme</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Enter the location of the theme archive file in the drop-down
combination box. Alternatively, to browse for the file, click on the <guibutton>Browse</guibutton> button. When you have selected the file, click <guibutton>OK</guibutton>.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Install</guibutton> button to install
the new theme. </para>
        </listitem>
      </orderedlist>
    </sect2>
    <sect2 id="goscustdesk-80">
      <title>To Install a New Theme Option</title>
      <para>You can install new controls options, window frame options, or icons
options. You can find many controls options on the Internet.</para>
      <para>To install a new controls option, window frame option, or icons option,
perform the following steps:</para>
      <orderedlist>
        <listitem>
          <para>To open the <application>Theme</application> preference tool,
choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Desktop
Preferences</guisubmenu><guimenuitem>Theme</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Details</guibutton> button. An <guilabel>Theme Details</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Click on the tab for the type of theme that you want to install.
For example, to install an icons option, click on the <guilabel>Icons</guilabel>
tab.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Install new theme</guibutton> button.
An <guilabel>Install New Theme</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Enter the location of the option archive file in the drop-down
combination box. Alternatively, to browse for the file, click on the <guibutton>Browse</guibutton> button. When you have selected the file, click <guibutton>OK</guibutton>.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Install</guibutton> button to install
the new option. </para>
        </listitem>
      </orderedlist>
    </sect2>
    <sect2 id="goscustdesk-81">
      <title>To Delete a Theme Option</title>
      <para>You can delete controls options, window frame options, or icons options.</para>
      <para>To delete a controls option, window frame option, or icons option, perform
the following steps:</para>
      <orderedlist>
        <listitem>
          <para>To open the <application>Theme</application> preference tool,
choose <menuchoice><guimenu>Applications</guimenu><guisubmenu>Desktop
Preferences</guisubmenu><guimenuitem>Theme</guimenuitem></menuchoice>.</para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Details</guibutton> button. A <guilabel>Theme Details</guilabel> dialog is displayed.</para>
        </listitem>
        <listitem>
          <para>Click on the tab for the type of option that you want to delete. </para>
        </listitem>
        <listitem>
          <para>Click on the <guibutton>Go to theme folder</guibutton> button.
A file manager window opens on the default option folder.</para>
        </listitem>
        <listitem>
          <para>Use the file manager window to delete the option.</para>
        </listitem>
      </orderedlist>
    </sect2>
    <sect2 id="goscustdesk-82">
      <title>Previewing Themes</title>
      <para>You can use the file manager to preview themes. To preview themes, perform
the following steps:</para>
      <orderedlist>
        <listitem>
          <para>Open a file manager window.</para>
        </listitem>
        <listitem>
          <para>Enter the URI <command>themes:///</command> in the location
bar. The themes are displayed as icons in the view pane.</para>
        </listitem>
        <listitem>
          <para>Double-click on a theme to display a preview of the theme.</para>
        </listitem>
      </orderedlist>
    </sect2>
  </sect1>
  <sect1 id="goscustdesk-58">
    <title>Customizing Windows</title>
    <indexterm>
      <primary>window manager</primary>
      <secondary>customizing</secondary>
    </indexterm>
    <indexterm>
      <primary>preference tools</primary>
      <secondary>Windows</secondary>
    </indexterm>
    <para>Use the <application>Windows</application> preference
tool to customize window behavior for your desktop environment.</para>
    <para><xref linkend="goscustwindows-TBL-14"/> lists the window behavior settings
that you can customize.</para>
    <table frame="topbot" id="goscustwindows-TBL-14">
      <title>Settings for Window Behavior</title>
      <tgroup cols="2" colsep="1" rowsep="1">
        <colspec colname="colspec0" colwidth="18.86*"/>
        <colspec colname="colspec1" colwidth="47.14*"/>
        <thead>
          <row>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Option</para>
            </entry>
            <entry colsep="0" rowsep="1" valign="top">
              <para>Function</para>
            </entry>
          </row>
        </thead>
        <tbody>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Select windows when the mouse moves over them</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select this option
to give focus to a window when you point to the window. The window retains
focus until you point to another window.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Raise selected windows after an interval</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select this option to raise windows
a short time after the window receives focus.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Interval before raising</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Specify the interval to wait before
raising a window that has received focus.</para>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>Double-click titlebar to perform this action</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select the behavior
that you want to occur when you double-click on a window titlebar. Select
one of the following options:</para>
              <itemizedlist>
                <listitem>
                  <para><guilabel>Roll up</guilabel>: Shades the window.</para>
                </listitem>
                <listitem>
                  <para><guilabel>Maximize</guilabel>: Maximizes the window.</para>
                </listitem>
              </itemizedlist>
            </entry>
          </row>
          <row>
            <entry colname="colspec0" colsep="0" rowsep="0" valign="top">
              <para>
                <guilabel>To move a window, press-and-hold this key then grab the window</guilabel>
              </para>
            </entry>
            <entry colname="colspec1" colsep="0" rowsep="0" valign="top">
              <para>Select
the key to press-and-hold when you drag a window to move the window.</para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  </sect1>
</chapter>