summaryrefslogtreecommitdiffstats
path: root/doc/en/konfigurator.docbook
blob: ab23a78ef92511b7365d20513d9ab3ceb1a38e9f (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
<chapter id="konfigurator">
  <!-- **********************************************************************
                            konfigurator.docbook
                          ++++++++++++++++++++++++
  copyright            : (C) 2000 - 2008
                          Rafi Yanai, Shie Erlich, Frank Schoolmeesters
                          & the Krusader Krew
  e-mail               : krusader@users.sourceforge.net
  web site             : http://www.krusader.org
  description          : a Krusader Documentation File

***************************************************************************
* Permission is granted to copy, distribute and/or modify this            *
* document under the terms of the GNU Free Documentation License,         *
* Version 1.1 or any later version published by the Free Software         *
* Foundation; with no Invariant Sections, no Front-Cover Texts and        *
* no Back-Cover Texts.  A copy of the license is available on the         *
* GNU site http://www.gnu.org/licenses/fdl.html or by writing to:         *
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,    *
* MA 02110-1301, USA.                                                     *
*********************************************************************** -->
  <title>Konfigurator: &krusader;'s Configuration
  Center</title>
  <indexterm>
    <primary>Configure</primary>
    <secondary>Krusader</secondary>
  </indexterm>
  <para>Konfigurator is &krusader;s configuration
  center. When runnig &krusader;, use 
                <menuchoice>
                 <guimenu>Settings</guimenu>
                 <guimenuitem>Configure &krusader;</guimenuitem>
                </menuchoice>, and it will start Konfigurator.
  There you can modify the way &krusader; works
  and customize it to your own needs. At any time, pressing the 
  <guibutton>Apply</guibutton> button applies the changes, pressing 
  <guibutton>Close</guibutton> closes Konfigurator, and pressing 
  <guibutton>Defaults</guibutton> re-applies &krusader;'s
  "factory" settings. Konfigurator is divided into pages, each
  containing items related to that page. For some changes to the
  &GUI;, you have to close and restart
  &krusader;.</para>

<note>
 <para>Since &krusader;-1.80.0 the &keybindigs-lnk; and &main-toolbar-lnk;-&actions-toolbar-lnk; 
       have reiceived their own configuration windows and so they are not a part anymore of Konfigurator,
       you can configure them now via the &settingsmenu-lnk;.</para>
</note>

  <sect1 id="konfig-startup">
    <title>Startup</title>
    <!-- OLD
<screenshot>
  <screeninfo>Startup configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kgstartup.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kgstartup.png" format="EPS"/></imageobject>
  <textobject><phrase>Startup configuration</phrase></textobject>
  <caption><para>Configure Startup</para></caption>
  </mediaobject>
</screenshot>
-->
    <figure id="screenshot-kgstartup" float="1">
      <title>Startup configuration</title>
      <mediaobject>
        <imageobject>
          <imagedata fileref="kgstartup.png"></imagedata>
        </imageobject>
        <textobject>
          <phrase>Startup configuration</phrase>
        </textobject>
      </mediaobject>
    </figure>
    <para>The startup page determines the way that
    &krusader; looks (and works) when it is launched. It
    is divided into two main parts:</para>
    <variablelist>
      <varlistentry>
        <term>
          <guilabel>General</guilabel>
        </term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
              <guilabel>Startup Profile</guilabel>: Starts the
              selected 
              <link linkend="panel_profiles">Panel profile</link> at
              startup. 
              <guilabel>&lt;Last
              session&gt;</guilabel> is a special Panel
              Profile, it is saved automatically when closing
              &krusader;.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show splashscreen</guilabel>: Displays a
              splash screen when starting
              &krusader;.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Single Instance Mode</guilabel>: Allows
              only one &krusader; instance to run.</para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>User Interface</guilabel>
        </term>
        <listitem>
          <para>Determines which parts of the user interface are
          visible after start-up. 
          <itemizedlist>
            <listitem>
              <para>
              <guilabel>Save settings on exit</guilabel>: If
              checked, restores the user interface components to
              their condition when last shut-down.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show toolbar</guilabel>: If checked,
              &main-toolbar-lnk; is visible after
              startup.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show statusbar</guilabel>: If checked, the
              &statusbar-lnk; is visible after
              start-up.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show function keys</guilabel>: If checked,
              the &fnkeybar-lnk; is visible after
              start-up.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show command line</guilabel>: If checked,
              the &cmdline-lnk; is visible after
              start-up.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show terminal emulator</guilabel>: If
              checked, the &termemu-lnk; is visible
              after start-up.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Save last position, size and panel
              settings</guilabel>: When launched,
              &krusader; resizes itself to the size it
              was when last shut-down. &krusader; also
              appears in the same location on the screen, having
              panels sorted and aligned as they were. If this
              option is unchecked, you can use the menu 
              <emphasis role="bold">
                <menuchoice>
                  <guimenu>Settings</guimenu>
                  <guimenuitem>Save Position</guimenuitem>
                </menuchoice>
              </emphasis> option to manually set
              &krusader; size and position at
              start-up.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Start to tray</guilabel>: if checked,
              &krusader; starts to tray (if minimize to
              tray is set), without showing the main window.</para>
            </listitem>
          </itemizedlist></para>
        </listitem>
      </varlistentry>
    </variablelist>
  </sect1>
  <sect1 id="konfig-looknfeel">
    <title>Look and Feel</title>
    <para>Here you can determine the look and feel of things -
    which means finetuning the application to your needs. The page
    is divided into four tabs: 
    <guilabel>Operation</guilabel>, 
    <guilabel>Panel</guilabel>, 
    <guilabel>Panel Toolbar</guilabel> and 
    <guilabel>Selection Mode</guilabel>:</para>
    <!-- OLD
<screenshot>
  <screeninfo>Look &amp; Feel configurtarion</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kglookfeel.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kglookfeel.png" format="EPS"/></imageobject>
  <textobject><phrase>Look &amp; Feel configurtarion</phrase></textobject>
  <caption><para>Configure Look &amp; Feel</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kglookfeel" float="1">
<title>Look &amp; Feel configurtarion</title>
<mediaobject>
<imageobject><imagedata fileref="kglookfeel.png"/></imageobject>
<textobject><phrase>Look &amp; Feel configurtarion</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <sect2 id="konfig-looknfeel-operation">
      <title>Operation</title>
      <itemizedlist>
        <title>
          <guilabel>Look &amp; Feel</guilabel>
        </title>
        <listitem>
          <para>
          <guilabel>Warn on exit</guilabel>: If checked,
          &krusader; displays an "Are you sure?" warning
          when you try to shut it down; otherwise, it exits without
          protest.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Minimize to tray</guilabel>: If checked, when
          you minimize &krusader;, its icon will appear
          in the system tray instead of the taskbar.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Autoselect Directories</guilabel>: When 
          <link linkend="edit-menu">you select a group of
          files</link> (either by using Select Group or by using
          Select All), &krusader; checks this option. If
          checked, the directories matching the select criteria are
          also selected. Otherwise, only files are selected.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Rename selects extension</guilabel>: When 
          <link linkend="renaming">you rename a file</link>, the
          whole text is selected. If you want total commanderlike
          renaming of just the name, without extension, deselect
          this item.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Use fullpath tab names</guilabel>: If checked,
          display the full path in the &foldertabs-lnk;;
          otherwise only the last part of the path is
          displayed.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Fullscreen terminal (mc-style)</guilabel>:
          Terminal appears instead of the &krusader;
          window (full screen).</para>
        </listitem>
        <!--
  <listitem><para><guilabel>HTML viewers minimal font size</guilabel>: when viewing an HTML file
       (usually using <keycap>F3</keycap>), &krusader; invokes &kde;'s built-in HTML parser. This option
       sets the minimal font size for the viewer, and aligns other font sizes accordingly.
       </para></listitem> -->
      </itemizedlist>
      <itemizedlist>
        <title>
          <guilabel>Quicksearch</guilabel>
        </title>
        <listitem>
          <para>
          <guilabel>New style Quicksearch</guilabel>: The new 
          <link linkend="quicksearch">Quicksearch</link>feature is
          used.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Case Sensitive Quicksearch</guilabel>: When you
          use the 
          <link linkend="quicksearch">Quicksearch</link>feature: If
          checked (the &UNIX; default), all files
          beginning with capital letters appear before files
          beginning with lower case letters; otherwise, all files
          beginning with a specified letter (capital or otherwise)
          will be displayed together.</para>
        </listitem>
      </itemizedlist>
    </sect2>
    <sect2 id="konfig-looknfeel-panel">
      <title>Panel</title>
      <itemizedlist>
        <listitem>
          <para>
          <guilabel>Panel font</guilabel>: Allows you to change the
          font used inside the file lists.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Filelist icon size</guilabel>: Allows you to
          change the size of the icons in the file lists. The
          available sizes are 16x16, 22x22, 32x32 and 48x48
          pixels.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Use icons in filenames</guilabel>: If checked,
          show the icons in file names and folders.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Human readable file size</guilabel>: If
          checked, the file size appears in kB, Mb
          &etc;, and not in bytes (default).</para>
        </listitem>
        <listitem>
          <para>Since &krusader;-1.70.0 you need to
          configure the columns with the right click menu in the
          panel, not in Konfigurator. The left and right panel use
          their own columns independently. The following columns
          are available: 
          <itemizedlist>
            <listitem>
              <para>
                <guilabel>Name</guilabel>: Shows the filename without the part after the last dot, 
                this latter part is displayed in the Ext column. When the Ext column is made hidden, 
                the complete filename is shown in the Name column like e.g. &konqueror; does.
              </para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Ext</guilabel>: Shows the last part of the
              filename (the part after the last dot) in the ext
              column, and not as a complete filename in the name column
              like e.g. &konqueror; does.
              </para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Type</guilabel>: Shows the mime type
              field.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Size</guilabel>: Shows the size
              field.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Modified</guilabel>: Shows the modified
              date and time field.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Perms</guilabel>: Shows the full permissions
              &eg; "rwxr-xr-x" or as octal numbers
              '0755' instead with enable/disable 
              <guilabel>Numeric Permissions</guilabel> in Look
              &amp; Feel 
              <guilabel>Operation</guilabel> Tab.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>rwx</guilabel>: Shows only the rights of
              the current user &eg; "-rw".</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Owner</guilabel>: Shows the owner
              field.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Group</guilabel>: Shows the group
              field.</para>
            </listitem>
          </itemizedlist></para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Show Hidden files</guilabel>: If checked,
          &krusader; displays the "dot-files" which are
          otherwise hidden.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Case Sensitive Sorting</guilabel>: If checked
          (the &UNIX; default), all files beginning with
          capital letters appear before files beginning with
          non-capital letters; otherwise, all files beginning with
          a specified letter (capital or otherwise) appear
          together.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Always sort dirs by name</guilabel>: Sorts
          directories by name, regardless of the sort
          column.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Numeric permissions</guilabel>: Permission
          column (Look &amp; Feel 
          <guilabel>Panel</guilabel>Tab) shows octal numbers '0755'
          instead of 'rwxr-xr-x'.</para>
        </listitem>
      </itemizedlist>
      <tip>
        <para>Uncheck the columns not in use. This allows more
        space for columns in use.</para>
      </tip>
    </sect2>
    <sect2 id="konfig-looknfeel-ptoolbar">
      <title>Panel Toolbar</title>
      <para>
      <guilabel>Panel Toolbar visible</guilabel>: If checked,
      &krusader; displays the Panel Toolbar.</para>
      <para>You can make the buttons on the 
      <guilabel>Panel Toolbar</guilabel> visible or hidden: 
      <itemizedlist>
        <listitem>
          <para>
          <guilabel>Clear Location Toolbar</guilabel> button: Clears
          the &location-toolbar-lnk;</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Open</guilabel> button</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Equal (=)</guilabel> button</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Up (..)</guilabel> button</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Home (~)</guilabel> button</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Root (/)</guilabel> button</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Toggle-button for sync-browsing</guilabel>: If
          checked, shows the &sync-browsing-lnk;
          button.</para>
        </listitem>
      </itemizedlist></para>
    </sect2>
    <sect2 id="konfig-selection_modes">
      <title>Selection Mode</title>
      <para>Here you can configure the selection modes. 
      <itemizedlist id="mouse_selection_modes">
        <title>
          <guilabel>General</guilabel>
        </title>
        <listitem>
          <para>
          <guilabel>&krusader; Mode</guilabel>: The way
          &krusader; has worked from day one. Both mouse
          keys allow selecting files. To select more than one file,
          hold the &Ctrl; key and click the
          &LMB;. Right-click menu appears with a short
          click on the &RMB;.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Konqueror Mode</guilabel>: pressing the
          &LMB; selects files -- 
          <!-- Openjade does not like an application element for "Konqueror" here -->
          you can click and select multiple files. Right-click menu
          appears with a short click on the
          &RMB;.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Total commander Mode</guilabel>: Pressing the
          &RMB; selects multiple files 
          <!-- Openjade does not like an trademark element for "Total commander" here -->
          and the right-click menu appears with 
          <guilabel>pressing and holding</guilabel> the
          &RMB; The &LMB; does not select,
          but sets the current file without affecting the current
          selection.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Custom Selection Mode</guilabel>: Create your
          own selection style!</para>
        </listitem>
      </itemizedlist>
      <itemizedlist>
        <title>
          <guilabel>Details</guilabel>
        </title>
        <listitem>
          <para>
          <guilabel>Double-click selects (classic)</guilabel>: A
          single click on a file will select and focus, a double
          click opens the file or steps into the directory.</para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Obey KDE global selection policy</guilabel>:
          Pressing the &LMB; selects files -- Use
          &kde;'s global setting: &kde;
          Control Center -&gt; Peripherals
          -&gt; Mouse.</para>
        </listitem>
        <listitem>
          <para>Custom Selection Mode items: 
          <itemizedlist>
            <listitem>
              <para>
                <guilabel>Based on KDE's selection mode</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Left mouse button selects</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Left mouse button preserves
                selection</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Shift/Ctrl-Left mouse button
                selects</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Right mouse button selects</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Right mouse button preserves
                selection</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Shift/Ctrl-Right mouse button
                selects</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Space bar moves down</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Space bar calculates diskspace</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Insert moves down</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Right-clicking shows the context menu
                immediately</guilabel>
              </para>
            </listitem>
          </itemizedlist></para>
        </listitem>
      </itemizedlist></para>
    </sect2>
  </sect1>
  <sect1 id="konfig-color">
    <title>Colors</title>
    <para>This page configures the colors of the
    &list-panel-lnk; and the
    &synchronizer-lnk;. The 
    <guilabel>KDE default colors</guilabel> is the default color
    configuration.</para>
    <!-- OLD
<screenshot>
  <screeninfo>Colors configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kgcolor.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kgcolor.png" format="EPS"/></imageobject>
  <textobject><phrase>Colors configuration</phrase></textobject>
  <caption><para>Colors configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kgcolor" float="1">
<title>Colors configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kgcolor.png"/></imageobject>
<textobject><phrase>Colors configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <variablelist>
      <varlistentry>
        <term>
          <guilabel>General</guilabel>
        </term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
              <guilabel>Use the default KDE colors</guilabel>: this
              is the default, it uses &kde; color
              settings of 
              <command>kcontrol</command>.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Use Alternate Background color</guilabel>:
              If checked, the 
              <guilabel>Background</guilabel> color and the 
              <guilabel>Alternate background</guilabel> color
              alternates line by line. When you do not use the
              &kde; default colors, you can configure
              the alternate colors in the 
              <guilabel>Colors</guilabel> box.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Show current item even if not
              focused</guilabel>: If checked, shows the last cursor
              position in the non active list panel. This option is
              only available when you do not use the
              &kde; default colors.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Dim the colors of the inactive
              panel</guilabel>: If checked, the colors of the
              inactive panel are dimmed. These settings can be
              configured in the 
              <guilabel>Inactive</guilabel> tab of the 
              <guilabel>Colors</guilabel> box. This option is only
              available when you do not use the &kde;
              default colors.</para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>Colors</guilabel>
        </term>
        <listitem>
          <para>Configure the colors the way you like, you can see
          the result in the 
          <guilabel>Preview</guilabel> section. The following items
          of the active and inactive panel can be
          configured:</para>
          <itemizedlist>
            <listitem>
              <para>
                <guilabel>Foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Directory foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Executable foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Symbolic link foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Invalid symlink foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Alternate background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Selected foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Selected background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Alternate selected background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Current foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Selected current foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Current background</guilabel>
              </para>
            </listitem>
          </itemizedlist>
          <para>The following items of the
          &synchronizer-lnk; can be configured:</para>
          <itemizedlist>
            <listitem>
              <para>
                <guilabel>Equals foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Equals background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Differing foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Differing background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Copy to left foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Copy to left background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Copy to right foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Copy to left background</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Delete foreground</guilabel>
              </para>
            </listitem>
            <listitem>
              <para>
                <guilabel>Delete background</guilabel>
              </para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>Preview</guilabel>
        </term>
        <listitem>
          <para>Here you see a preview of the configured
          colors.</para>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>Color schemes</guilabel>
        </term>
        <listitem>
          <para>With the 
          <guibutton>Import Color Scheme</guibutton> and 
          <guibutton>Export Color Scheme</guibutton> buttons you can
          load and save a Color Scheme profile. This allows
          &krusader; to use &tcmd;,
          &mc;, foo-commander or your own custom color
          profile. The Color Schemes are stored in 
          <filename>$TDEDIR/share/apps/krusader</filename>, the 
          <filename>foo.color</filename> is a binary file that holds
          the color scheme.</para>
          <tip>
            <para>&mc; and &tcmd; Color
            scheme files are provided. Please 
            <link linkend="help_krusader">upload your favorite
            Color schemes</link> so that they become available for
            the &krusader; community. Thanks!</para>
          </tip>
        </listitem>
      </varlistentry>
    </variablelist>
  </sect1>
  <sect1 id="konfig-general">
    <title>General</title>
    <para>Here you configure the basic operations.</para>
    <!-- OLD
<screenshot>
  <screeninfo>General configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kggeneral.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kggeneral.png" format="EPS"/></imageobject>
  <textobject><phrase>General configuration</phrase></textobject>
  <caption><para>General configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kggeneral" float="1">
<title>General configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kggeneral.png"/></imageobject>
<textobject><phrase>General configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <para>The following options determine basic aspects of
    operation: 
    <itemizedlist>
      <listitem>
        <para>
        <guilabel>Delete files/Move to trash</guilabel>: when
        &krusader; deletes files it can either 'really'
        delete them or move them to the trash folder, thereby
        making them available via &kde;'s trash.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Use mimetype magic</guilabel>: mime type magic is
        a mechanism which allows &krusader; to inspect
        the files in the panels and determine their type even if
        the file has no identifying extension. For example, if you
        take an image file - 'image1.jpg' - and rename it to
        'image1', &krusader; will still know it's an
        image file and work with it accordingly. However, this mode
        of operation is slower (while refreshing the panel, or
        changing directories), so try &krusader; with
        and without mime type magic and decide what is best for
        you.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Editor</guilabel>: choose what editor will be
        used when editing a file (via F4).</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Default viewer mode</guilabel>: either generic,
        text or hex mode.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Viewer opens each file in a separate
        window</guilabel>: you can use the browsing tabs for
        navigation.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Atomic extensions</guilabel>: predefined atomic extensions like <filename>tar.gz</filename> 
        are shown as one part in the <guilabel>Ext Column</guilabel> of the &list-panel-lnk;.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Terminal</guilabel>: choose which terminal
        emulator will be used when &krusader; opens a
        console window (via F2, or Commands-&gt;Terminal
        menu option).</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Terminal Emulator sends Chdir on a panel
        change</guilabel>: if unchecked, there will be no 
        <command>cd</command> command sent to the Terminal Emulator
        if the panel folder changes.</para>
      </listitem>
      <listitem>
        <para>
        <guilabel>Temp Directory</guilabel>: this option selects
        the base directory for &krusader;'s temporary
        files. The actual files will be created in separate
        directories under the 'Temp directory', so that each user
        running &krusader; will have their own temporary
        subdirectories under the chosen directory. 
        <note>
          <para>You must choose a temporary directory to which all
          users running &krusader; have full
          permissions!</para>
        </note></para>
      </listitem>
    </itemizedlist></para>
  </sect1>
  <sect1 id="konfig-advanced">
    <title>Advanced</title>
    <para>This page handles more advanced issues, so you should
    double-check your actions here: modifying settings here 
    <remark>makes &krusader; a more powerful AND
    dangerous tool.</remark></para>
    <!-- OLD
<screenshot>
  <screeninfo>Advanced configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kgadvanced.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kgadvanced.png" format="EPS"/></imageobject>
  <textobject><phrase>Advanced configuration</phrase></textobject>
  <caption><para>Advanced configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kgadvanced" float="1">
<title>Advanced configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kgadvanced.png"/></imageobject>
<textobject><phrase>Advanced configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <para>The page is divided into three parts:</para>
    <variablelist>
      <varlistentry>
        <term>
          <guilabel>General</guilabel>
        </term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
              <guilabel>Preserve attributes for local copy/move
              (slower)</guilabel>: If checked,
              &krusader; will try to preserve all
              attributes (time, owner, group) of the local files
              according to the source file depending on your 
              <link linkend="copying">permissions</link>.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Automount filesystems</guilabel>: this
              makes &krusader; try to mount a file system
              before entering it. For example, if you click on 
              <filename class="directory">/mnt/cdrom</filename> (and
              <filename class="directory">
              /mnt/cdrom</filename> appears in 
              <filename class="directory">/etc/fstab</filename> as a
              mount point), &krusader; will check if it
              is mounted. If not, it will try and mount it for you
              and then enter, so that you would see the contents of
              your cdrom. Note, however, that &krusader;
              will NOT unmount when exiting 
              <filename class="directory">
              /mnt/cdrom</filename>.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Do not use KDE media protocol for the
              Media button (if it is buggy or missing)</guilabel>:
              If checked, &krusader; will not use
              &kde; media protocol for the 
              <link linkend="list_panel">Media button</link>.
              Choose this when the media protocol is buggy (in some
              older &kde; versions) or if you have no
              tdebase package installed on your system.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>MountMan will not (un)mount the following
              mount points</guilabel>: If you have file systems that
              you do not want to accidentally unmount (or mount)
              then enter a list of mount points separated by commas
              (&eg; 
              <literal>/, /boot, /tmp</literal>) and
              &mountman-lnk; will not try to (un)mount
              them.</para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>Confirmations</guilabel>
        </term>
        <listitem>
          <para>By checking the options in this section,
          &krusader; will ask for confirmation before
          doing a specific action; otherwise, the following actions
          will be done without warning:</para>
          <itemizedlist>
            <listitem>
              <para>deleting non empty directorie(s)</para>
            </listitem>
            <listitem>
              <para>deleting file(s)</para>
            </listitem>
            <listitem>
              <para>copying file(s)</para>
            </listitem>
            <listitem>
              <para>moving file(s)</para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>
          <guilabel>Fine-Tuning</guilabel>
        </term>
        <listitem>
          <itemizedlist>
            <listitem>
              <para>
              <guilabel>Icon Cache Size</guilabel>:
              &krusader; uses an icon cache, so it will not
              have to reload icons that have been used before. Of
              course, as the cache grows bigger, it can store more
              icons and further speed operations, but the memory
              footprint of &krusader; will become
              bigger.</para>
            </listitem>
            <listitem>
              <para>
              <guilabel>Arguments of updatedb</guilabel>: sets
              additional arguments for 
              <command>updatedb</command>, please read the manpages
              for more information.</para>
            </listitem>
          </itemizedlist>
        </listitem>
      </varlistentry>
    </variablelist>
  </sect1>
  <sect1 id="konfig-archives">
    <title>Archives</title>
    <para>This page handles the way &krusader; works
    with archives. In the 
    <guilabel>General</guilabel> section you will see a list of
    archive formats. Some are checked and some are grayed-out. The
    ones that are available (not grayed-out) are supported by
    &krusader;. If you check them, &krusader;
    will handle the archives transparently and let you open them as
    folders; otherwise, &krusader; will attempt to
    invoke an application which opens archives of that type. If a
    certain archive is grayed-out, it means that
    &krusader; could not find the appropriate executables
    in the configured path. The next archives are supported: ace,
    arj, bzip2, deb, gzip, iso, lha, rar, rpm, tar, zip and
    7-zip.</para>
    <!-- OLD
<screenshot>
  <screeninfo>Archives configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kgarchives.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kgarchives.png" format="EPS"/></imageobject>
  <textobject><phrase>Archives configuration</phrase></textobject>
  <caption><para>Archives configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kgarchives" float="1">
<title>Archives configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kgarchives.png"/></imageobject>
<textobject><phrase>Archives configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <para>If you have installed a certain archive application (let's
    say 
    <command>arj</command>) and want &krusader; to know
    about it, just click the 
    <guibutton>Auto Configure</guibutton> button.
    &krusader; will search for all supported executables
    and print a report listing the archive formats that can be
    handled. If the operation was successful the new archive should
    be available and checked.</para>
    <note>
      <para>Please install new packagers to your 
      <envar>PATH</envar> (&ie;: 
      <filename>/usr/bin</filename> or 
      <filename>/usr/local/bin</filename> &etc;)</para>
    </note>
    <para>The full path of the packagers is stored in the
    &konfigdependencie-lnk; (&eg; to handle
    ZIP archives, &krusader; needs the 
    <command>unzip</command> and 
    <command>zip</command> executables). It is possible that you need
    to manually configure the mimes to the protocols in the
    &konfigprotocol-lnk;.</para>
    <para>
      <guilabel>Fine-Tuning</guilabel>
      <itemizedlist>
        <listitem>
          <para>
          <guilabel>Allow moving into archives</guilabel>: this
          option allows you to move files into an archive (as
          opposed to just copying into the archive). The down side
          is that if a power failure occurs during the process, the
          files that were moved might already be deleted, but not
          yet packed into the archive. 
          <note>
            <para>If such a thing happens, the file(s) are NOT
            LOST. They were actually moved into a subfolder in
            &krusader;'s 
            <link linkend="konfig-general">temp directory</link>.
            You can search the directory and recover your
            files.</para>
          </note></para>
        </listitem>
        <listitem>
          <para>
          <guilabel>Test archives when finished packing</guilabel>:
          this option automatically runs a test on a newly packed
          archive. It is safer, but takes longer.</para>
        </listitem>
      </itemizedlist>
    </para>
  </sect1>
  <sect1 id="konfig-dependencies">
    <title>Dependencies page</title>
    <para>This page configures the full path of the external
    applications. It is even possible to configure the full path of
    &krusader;!</para>
    <para>
      <emphasis role="bold">General tab</emphasis>
    </para>
    <para>Here you can configure the full path of the following
    external applications: 
    <informaltable>
      <tgroup cols="2">
        <tbody>
          <row>
            <entry>application</entry>
            <entry>configurable full path</entry>
          </row>
          <row>
            <entry>
              <para>
                <command>df</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/df</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>eject</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/eject</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>tdesu</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/tdesu</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>kget</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/kget</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>kmail</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/kmail</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>diff utility</para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/kompare</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <command>krename</command>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/krename</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>krusader</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/krusader</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>locate</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/locate</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>mount</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/mount</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>umount</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/umount</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>updatedb</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/updatedb</replaceable>
                </filename>
              </para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </informaltable></para>
    <tip>
      <para>By default &kompare; (part of the tdebase
      package) is used as external diff utility but you can also
      use your favorite diff utility &eg;
      &xxdiff-url; or &kdiff3-url;, just fill
      in the full path and enjoy.</para>
    </tip>
    <para>
      <emphasis role="bold">Packers tab</emphasis>
    </para>
    <para>Here you can configure the full path of the following
    external packers. &krusader; also offers an 
    <link linkend="konfig-archives">auto configure tool</link> for
    packagers. 
    <informaltable>
      <tgroup cols="2">
        <tbody>
          <row>
            <entry>packer</entry>
            <entry>configurable full path</entry>
          </row>
          <row>
            <entry>
              <para>
                <command>7z</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>usr/bin/7z</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>arj</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>usr/bin/arj</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>bzip2</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>usr/bin/bzip2</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>cpio</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/cpio</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>dpkg</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/dpkg</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>gzip</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/gzip</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>lha</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/lha</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>rar</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/rar</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>tar</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/bin/tar</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>unace</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/unace</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>unarj</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/unarj</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>unrar</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/unrar</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>unzip</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/unzip</replaceable>
                </filename>
              </para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>zip</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/zip</replaceable>
                </filename>
              </para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </informaltable></para>
    <note>
      <para>&krusader; may not be compatible with ACE despite our
      best efforts. Unace uses closed source and contains
      additional lines that make Unace get into infinite loop if
      the stdin is redirected to somewhere else. It works in the
      same manner as 'su', where you cannot enter the password only
      from the stdin. &krusader; &gt;= 1-51
      emulates the command line environment to enable co-operation
      with Unace, but we have noticed that Unace always changes its
      output format from release to release, making co-operation
      almost impossible.</para>
    </note>
    <para>
      <emphasis role="bold">Checksum Utilities tab</emphasis>
    </para>
    <para>Here you can configure the full path of the following
    external 
    <link linkend="checksum">Checksum Utilities</link>: 
    <informaltable>
      <tgroup cols="3">
        <tbody>
          <row>
            <entry>Checksum Utilities</entry>
            <entry>configurable full path</entry>
            <entry>supported checksums</entry>
          </row>
          <row>
            <entry>
              <para>
                <command>md5sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/md5sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>md5</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha1sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha1sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha1</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>md5deep</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/md5deep</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>md5</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha1deep</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha1deep</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha1</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha224sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha224sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha224</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha256sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha256sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha256</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha256deep</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha256deep</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha256</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha384sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha384sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha384</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>sha512sum</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/sha512sum</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>sha512</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>tigerdeep</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/tigerdeep</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>tiger</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>whirlpooldeep</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/whirlpooldeep</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>whirlpool</para>
            </entry>
          </row>
          <row>
            <entry>
              <para>
                <command>cfv</command>
              </para>
            </entry>
            <entry>
              <para>
                <filename class="directory">
                  <replaceable>/usr/bin/cfv</replaceable>
                </filename>
              </para>
            </entry>
            <entry>
              <para>md5, sha1, sfv, crc</para>
            </entry>
          </row>
        </tbody>
      </tgroup>
    </informaltable></para>
  </sect1>
  <sect1 id="konfig-useractions">
    <title>UserActions</title>
    <para>Here you can configure the terminal for UserActions and
    the font for the output-collection. The default terminal is 
    <filename>konsole --noclose -e</filename>. To set up, configure
    and manage your UserActions use ActionMan
    (&useractions-lnk; url).</para>
    <!-- OLD
<screenshot>
  <screeninfo>Useractions configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kguseractions.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kguseractions.png" format="EPS"/></imageobject>
  <textobject><phrase>Useractions configuration</phrase></textobject>
  <caption><para>Useractions configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kguseractions" float="1">
<title>Useractions configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kguseractions.png"/></imageobject>
<textobject><phrase>Useractions configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
  </sect1>
  <sect1 id="konfig-protocols">
    <title>Protocols</title>
    <para>This page links the mimes to protocols. &eg;
    protocol "tar" is linked to mime "application/x-tar".</para>
    <!-- OLD
<screenshot>
  <screeninfo>Protocols configuration</screeninfo>
  <mediaobject>
  <imageobject><imagedata fileref="kgprotocols.png" format="PNG"/></imageobject>
  <imageobject><imagedata fileref="kgprotocols.png" format="EPS"/></imageobject>
  <textobject><phrase>Protocols configuration</phrase></textobject>
  <caption><para>Protocols configuration</para></caption>
  </mediaobject>
</screenshot>
-->
    <!--HTML_PARSING
<figure id="screenshot-kgprotocols" float="1">
<title>Protocols configuration</title>
<mediaobject>
<imageobject><imagedata fileref="kgprotocols.png"/></imageobject>
<textobject><phrase>Protocols configuration</phrase></textobject>
</mediaobject>
</figure>
HTML_PARSING-->
    <para>In the 
    <guilabel>Defined Links</guilabel>you will see &eg; 
    <itemizedlist>
      <listitem>
        <para>Iso</para>
        <itemizedlist>
          <listitem>
            <para>application/x-iso</para>
          </listitem>
        </itemizedlist>
      </listitem>
      <listitem>
        <para>krarc</para>
        <itemizedlist>
          <listitem>
            <para>application/x-ace</para>
          </listitem>
          <listitem>
            <para>application/x-arj</para>
          </listitem>
          <listitem>
            <para>application/x-bzip2</para>
          </listitem>
          <listitem>
            <para>application/x-cpio</para>
          </listitem>
          <listitem>
            <para>application/x-deb</para>
          </listitem>
          <listitem>
            <para>application/x-debian-package</para>
          </listitem>
          <listitem>
            <para>application/x-gzip</para>
          </listitem>
          <listitem>
            <para>application/x-jar</para>
          </listitem>
          <listitem>
            <para>application/x-lha</para>
          </listitem>
          <listitem>
            <para>application/x-rar</para>
          </listitem>
          <listitem>
            <para>application/x-rpm</para>
          </listitem>
          <listitem>
            <para>application/x-zip</para>
          </listitem>
        </itemizedlist>
      </listitem>
      <listitem>
        <para>tar</para>
        <itemizedlist>
          <listitem>
            <para>application/x-tar</para>
          </listitem>
          <listitem>
            <para>application/x-tarz</para>
          </listitem>
          <listitem>
            <para>application/x-tbz</para>
          </listitem>
          <listitem>
            <para>application/x-tgz</para>
          </listitem>
        </itemizedlist>
      </listitem>
    </itemizedlist></para>
  </sect1>
</chapter>