-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
2238 lines (1782 loc) · 87.7 KB
/
help.html
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
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Olivier Fourdan ([email protected])">
<meta name="GENERATOR" content="Mozilla/4.7 [en] (X11; I; Linux 2.2.14 i586) [Netscape]">
<title>XFce 3.3 Online Manual</title>
</head>
<body text="#000000" bgcolor="#FFFFFF">
<center><font color="#000000"><font size=+4>XFce 3.3</font></font>
<p><img SRC="slogan.jpg" >
<p><i><font color="#000000"><font size=-2>XFce version 3.3 (c) 1997-2000
Olivier Fourdan ([email protected])</font></font></i>
<p><b><u><font color="#000000"><font size=-1>Preamble</font></font></u></b></center>
<p><font color="#000000"><font size=-1>The XFce project was first started
because I needed a simple, light and efficient environment for my Linux
System.</font></font>
<p><font color="#000000"><font size=-1>There are now a lot of good environments
and interfaces for Unix based systems, but most are either too heavy,
too expensive or even both !</font></font>
<p><font color="#000000"><font size=-1>I wanted something easy to use and
configure, stable, fast, and last but not least, visually appealing...</font></font>
<p><font color="#000000"><font size=-1>I believe that the desktop environment
should increase user productivity. Therefore, the goal is to keep most
system resources for the applications and not to consume all memory and
CPU usage for what is used to display them.</font></font>
<p><font color="#000000"><font size=-1>From version to version, XFce has
become more and more user configurable. As XFce is made for the user, it
has to be very simple to configure. That's why everything is driven by
the mouse, using buttons, drag and drop, etc., and the configuration files
are hidden from the user, although they are plain text.</font></font>
<center>
<p><img SRC="xfce_snap.jpg" >
<p><i><font color="#000000"><font size=-2>Typical XFce desktop</font></font></i></center>
<p><b><u><font color="#000000"><font size=+1>User Guide</font></font></u></b>
<p><b><u><font color="#000000"><font size=-1>The main panel</font></font></u></b>
<center>
<p><img SRC="xfce_panel.jpg" ></center>
<p><font color="#000000"><font size=-1>The functions of the main panel
are:</font></font>
<br>
<ul>
<li>
<font color="#000000"><font size=-1>Launch applications</font></font></li>
<li>
<font color="#000000"><font size=-1>Open popup menus</font></font></li>
<li>
<font color="#000000"><font size=-1>Switch virtual desktop</font></font></li>
<li>
<font color="#000000"><font size=-1>Give access to the configuration of
the desktop</font></font></li>
</ul>
<p><br><font color="#000000"><font size=-1>The clock has no special function,
except showing the date as a tooltip, while the icons are used to launch
applications. You can select an analog or digital clock by clicking
with the left mouse button on the clock.</font></font>
<br>
<br>
<p><font color="#000000"><font size=-1>To modify an icon on the main panel,
or associate a command to an icon, click on the corresponding icon with
the right mouse button.</font></font>
<center>
<p><img SRC="xfce_action.jpg" ></center>
<p><font color="#000000"><font size=-1>To change the label of a virtual
screen button, click on the button using the right mouse button :</font></font>
<center>
<p><img SRC="xfce_screen.jpg" ></center>
<p><font color="#000000"><font size=-1>Note : The number of virtual desktops
is user configurable, from 2 to 10 desktops. See the configuration section
later in this manual for more details.</font></font>
<p><font color="#000000"><font size=-1>On top of each icon, there is a
little tiny arrow. Each of these buttons opens a popup menu.</font></font>
<p><font color="#000000"><font size=-1>Note : Some text based applications,
such as "vi" require a terminal (xterm) to be opened. You can use the keyword
"term" to start a terminal before running the command</font></font>
<p><font color="#000000"><font size=-1>e.g.:</font></font>
<p><font color="#000000"><font size=-1>Command line : <tt>term vi</tt></font></font>
<p><b><u><font color="#000000"><font size=-1>Popup menus</font></font></u></b>
<center>
<p><img SRC="xfce_popup.jpg" ></center>
<p><font color="#000000"><font size=-1>Popup menus are another way of launching
applications from the XFce panel.</font></font>
<p><font color="#000000"><font size=-1>Each entry is associated with an
application that is launched when the menu entry is selected.</font></font>
<p><font color="#000000"><font size=-1>Drag and drop from various file
managers (XFTree included, of course) is supported. For example, you can
drag a C source file onto the X-Edit entry and xedit will be started and
open the specified file.</font></font>
<p><font color="#000000"><font size=-1>The item on the top of the menu,
called "Add icon...", is used to add new entries to menu. Drag and drop
is also supported, but it does not trigger the same action. In fact, when
you drop a file (preferably an executable) an entry is automatically added
to the corresponding menu with a default icon. You can later change this
icon by using the left mouse button.</font></font>
<p><font color="#000000"><font size=-1>The little tiny button at the bottom
of the menu is only visible if the option "Use tear-off menu" is enabled.
By clicking on this button you can "detach" the menu. Once a menu is detached
you can move it around your screen and it stays opened even if an entry
is selected, which is very convenient.</font></font>
<center>
<p><img SRC="xfce_popup_detached.jpg" ></center>
<p><font color="#000000"><font size=-1>An existing entry can be modified
by using the right mouse button :</font></font>
<center>
<p><img SRC="xfce_modify.jpg" ></center>
<p><b><u><font color="#000000"><font size=-1>Setup & parameters</font></font></u></b>
<p><font color="#000000"><font size=-1>As stated before, XFce is very intuitive.
All customization can be performed through its graphical user interface.</font></font>
<p><font color="#000000"><font size=-1>For this purpose XFce provides a
setup dialog with 4 tabfolders : "Palette", "XFce", "Windows" and "Startup".</font></font>
<p><b><i><u><font color="#000000"><font size=-1>Palette tabfolder</font></font></u></i></b>
<p><font color="#000000"><font size=-1>As XFce is based on the popular
GTK+ toolkit, it uses the .gtkrc style hidden configuration file located
in the user's directory. This enables all GTK+ applications to share the
same color scheme. While .gtkrc is usually copied from a theme or written
by hand, XFce is able to automatically generate the .gtkrc file from the
color values and font selected by the user in the palette setup screen.</font></font>
<p><font color="#000000"><font size=-1>XFce is able to determine whether
the .gtkrc file is customized by the user or not. If one wants to build
his own .gtkrc style or if one uses a style from GNOME Control Center (gnomecc),
XFce won't override it (as a result, if you curently have a .gtkrc file
in your home directory and you want XFce to manage the style for you, you
should remove or rename your current ~/.gtkrc file).</font></font>
<p><font color="#000000"><font size=-1>But if there is no .gtkrc file in
user's home directory or if it is empty, XFce will generate a .gtkrc file
so all GTK+ applications, including GNOME applications, will share exactly
the same look.</font></font>
<center>
<p><img SRC="xfce_setup1.jpg" ></center>
<p><font color="#000000"><font size=-1>A palette, from XFce's point of
view, is made of 8 colors and a font name. Each color is used to display
specific items in the XFce desktop: like the mouse pointer, the default
window background, the text fields, etc.</font></font>
<p><font color="#000000"><font size=-1>The color you select for this palette
are shared by all XFce aware applications (XFTree, XFClock, XFwm, etc.)</font></font>
<p><font color="#000000"><font size=-1>By clicking on one of the colors,
you can change it using the color selector :</font></font>
<center>
<p><img SRC="xfce_colorsel.jpg" ></center>
<p><font color="#000000"><font size=-1>The palette can be saved to disk
using the "Save..." button. You can retrieve it later using the "Load..."
button.</font></font>
<p><font color="#000000"><font size=-1>You don't necessarily need to save
your palette to disk unless you want to share it with other users. The
current palette is automatically saved to a file in the user's home directory
so that XFce will have the same color scheme when you restart it.</font></font>
<p><font color="#000000"><font size=-1>The font used for displaying text
in XFce is selected in the XFce tabfolder.</font></font>
<p><b><i><u><font color="#000000"><font size=-1>XFce tabfolder</font></font></u></i></b>
<center>
<p><img SRC="xfce_setup2.jpg" ></center>
<p><font color="#000000"><font size=-1>This dialog gives access to all
XFce options :</font></font>
<br>
<ul>
<li>
<font color="#000000"><font size=-1>Set the delay before tooltips appear.</font></font></li>
<li>
<font color="#000000"><font size=-1>Let XFce repaint the root window with
the color of the screen button.</font></font></li>
<li>
<font color="#000000"><font size=-1>Use a gradient instead of plain color
(only available if previous option is selected). This option has no effect
on terminals with less that 256 colors, to reduce color usage.</font></font></li>
<li>
<font color="#000000"><font size=-1>Use tear-off menus (see popup menus,
earlier in this manual)</font></font></li>
<li>
<font color="#000000"><font size=-1>The number of virtual screens available
in XFce panel. From 2 to 10 screens are available.</font></font></li>
<li>
<font color="#000000"><font size=-1>The number of popup menus : You can
choose to have from 0 up to 12 popup menus in XFce panel !</font></font></li>
<li>
<font color="#000000"><font size=-1>The size if icons displayed on the
panel. If your pixmaps are larger than the values specified, the images
are automatically scaled to fit the button.</font></font></li>
<li>
<font color="#000000"><font size=-1>The size of the icons in the popup
menus. Same as above.</font></font></li>
<li>
<font color="#000000"><font size=-1>The font used in XFce applications
(as for the palette, this font is shared by all XFce applications)</font></font></li>
</ul>
<p><br><u><font color="#000000"><font size=-1>Notes :</font></font></u>
<p><font color="#000000"><font size=-1>1. The option "repaint root window"
overrides any other application trying to use the root window. As a result,
if you specify a backdrop in xfbd, XFce's backdrop manager, make sure you
disable this option.</font></font>
<p><font color="#000000"><font size=-1>2. By changing the size of the icons,
along with the number of popup menus available in XFce panel, you can adapt
XFce to all types of screens including small screens.</font></font>
<p><b><i><u><font color="#000000"><font size=-1>Windows tabfolder</font></font></u></i></b>
<p><font color="#000000"><font size=-1>This tabfolder is for managing XFwm,
the window manager, options.</font></font>
<center>
<p><img SRC="xfce_setup3.jpg" ></center>
<p><font color="#000000"><font size=-1>The behavior of the windows can
be tuned by using the following options :</font></font>
<br>
<ul>
<li>
<font color="#000000"><font size=-1>Click to focus windows : If you enable
this option, you will have to click inside a window to give it the keyboard
focus. Otherwise the keyboard focus will be given to the window below the
mouse pointer. If you move the pointer the focus moves accordingly.</font></font></li>
<li>
<font color="#000000"><font size=-1>When Autoraise window is enabled (this
option is not available if "Click to focus" is enabled) the windows with
keyboard focus are automatically raised, i.e. placed on top of all other
windows.</font></font></li>
<li>
<font color="#000000"><font size=-1>Show contents of windows during move/resize
defines whether the whole window or just an outline shadow should be shown
during move/resize operations. The outline shadow (ie if this option is
not selected) gives additional informations about the window position and
geometry. Please note that opaque move and resize can load your system
or your network if using Xfce on a remote X terminal, by causing
a lot of window exposure events.</font></font></li>
<li>
<font color="#000000"><font size=-1>Set the size of the snap grid for windows.
Window snapping is a very convenient feature : When a window is moved such
that it touches another window or the screen edge it holds that position
for a moment. Using this feature, you can align windows quite easily by
just moving them till they hold then releasing them.</font></font></li>
<br><font color="#000000"><font size=-1>"Snapsize" option also drives the
autodesk switch feature. <b>By setting a snapsize lower or equal to 5,
the autodesk switch is disabled.</b></font></font>
<li>
<font color="#000000"><font size=-1>The title bar of the active window
can be painted using a solid or a gradient color. Just select "Use gradient
color for active window" to use a gradient color.</font></font></li>
<li>
<font color="#000000"><font size=-1>"Use gradient color for inactive windows"
is similar for inactive windows. Please note that these options have no
effect on terminals with 256 colors or less.</font></font></li>
<li>
<font color="#000000"><font size=-1>XFwm automatically arrange the iconified
windows on the screen. You can specify where to place the icons by selecting
top, left, bottom or right.</font></font></li>
<li>
<font color="#000000"><font size=-1>The 3 last fields are for changing
the fonts used by the window manager :</font></font></li>
<br><font color="#000000"><font size=-1>1. Font used for titles.</font></font>
<br><font color="#000000"><font size=-1>2. Font used for menus.</font></font>
<br><font color="#000000"><font size=-1>3. Font used for icons.</font></font></ul>
<p><br><b><i><u><font color="#000000"><font size=-1>Startup tabfolder</font></font></u></i></b>
<p><font color="#000000"><font size=-1>Using the options from this screen
you can adjust which XFce core modules (daemons/services) you want to start
when XFce starts.</font></font>
<center>
<p><img SRC="xfce_setup4.jpg" ></center>
<p><font color="#000000"><font size=-1>For example, if you don't want the
pager to be launched on startup, just unselect the option. Beware that
if a module is not started, the corresponding feature won't be enabled
: If you don't start xfsound, you won't get any sound in XFce.</font></font>
<p><b><u><font color="#000000"><font size=-1>The Window Manager</font></font></u></b>
<p><font color="#000000"><font size=-1>XFwm is the window manager that
comes with XFce.</font></font>
<p><font color="#000000"><font size=-1>It is fully integrated to the environment,
providing a homogeneous interface with all XFce applications.</font></font>
<p><font color="#000000"><font size=-1>Moreover, XFwm is able to handle
the most common window hints shared by popular applications such as Motif,
SUN Openwindows, KDE and GNOME applications.</font></font>
<p><font color="#000000"><font size=-1>Most user options are handled through
XFce setup and do not require any script customization (although you'll
find a description of XFwm functions in the technical documentation of
XFce).</font></font>
<p><font color="#000000"><font size=-1>Without any specific customization
XFwm provides a set of built-in menus and functions.</font></font>
<p><b><i><u><font color="#000000"><font size=-1>Main menu</font></font></u></i></b>
<p><font color="#000000"><font size=-1>The main menu can be obtained by
clicking on the root window with the right mouse button or by pressing
[Alt+F2]</font></font>
<center>
<p><img SRC="xfwm_menu1.jpg" ></center>
<p><font color="#000000"><font size=-1>This menu provides an access to
the most common operations.</font></font>
<br>
<ul>
<li>
<font color="#000000"><font size=-1>New window : Opens an xterm</font></font></li>
<li>
<font color="#000000"><font size=-1>Shuffle Up : Moves focus to the next
window (but does not raise it)</font></font></li>
<li>
<font color="#000000"><font size=-1>Shuffle Down : Moves focus to the previous
window (does not raise it either)</font></font></li>
<li>
<font color="#000000"><font size=-1>Refresh : Force a repaint of all mapped
windows.</font></font></li>
<li>
<font color="#000000"><font size=-1>Arrange Icons : Arrange icons on the
current desktop according to the position selected in XFce options (i.e.
top, left, right, bottom)</font></font></li>
<li>
<font color="#000000"><font size=-1>Mouse : Opens XFMouse, the mouse configuration
utility</font></font></li>
<li>
<font color="#000000"><font size=-1>Backdrop : Opens XFbd, the backdrop
selector.</font></font></li>
<li>
<font color="#000000"><font size=-1>Sound : Opens XFSound, XFce sound configurator.</font></font></li>
<li>
<font color="#000000"><font size=-1>Quit XFwm : Opens a sub-menu for restarting
the window manager (and its modules such as XFPager or XFce panel) or quit.</font></font></li>
</ul>
<center>
<p><br><img SRC="xfwm_menu3.jpg" ></center>
<p><b><i><u><font color="#000000"><font size=-1>Window Menu</font></font></u></i></b>
<p><font color="#000000"><font size=-1>The window menu can be obtained
by clicking on the root window with the middle mouse button (or both left
and right button, if you have only 2 mouse buttons) or by pressing [Alt+F1]</font></font>
<center>
<p><img SRC="xfwm_menu2.jpg" ></center>
<ul>
<li>
<font color="#000000"><font size=-1>Move : Move the window around the screen.
If no window is selected you will be prompted to selected a window first.</font></font></li>
<li>
<font color="#000000"><font size=-1>Resize : Change the size of a window</font></font></li>
<li>
<font color="#000000"><font size=-1> Iconify/Deiconify : Hide the
window and display a little icon in place.</font></font></li>
<li>
<font color="#000000"><font size=-1>Stick/Unstick : When a window is "sticky"
it stays on the screen even if you switch to another desktop.</font></font></li>
<li>
<font color="#000000"><font size=-1>Shade/Unshade : pull up the window
and display just the title bar.</font></font></li>
<li>
<font color="#000000"><font size=-1>Maximize/Unmaximize : Enlarge the window
so it occupies all screen.</font></font></li>
<li>
<font color="#000000"><font size=-1>Close : Close the window. If it is
the main window of an application the corresponding application is terminated.
When an application is overloaded it can refuse to respond this event.</font></font></li>
<li>
<font color="#000000"><font size=-1>Send to : Send the window to another
workspace</font></font></li>
</ul>
<center>
<p><br><img SRC="xfwm_menu4.jpg" ></center>
<ul>
<li>
<font color="#000000"><font size=-1>Switch to : Display a list of running
applications and let you choose which one to focus</font></font></li>
</ul>
<center>
<p><br><img SRC="xfwm_menu5.jpg" ></center>
<p><b><i><u><font color="#000000"><font size=-1>Keyboard shortcuts</font></font></u></i></b>
<br>
<center><table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BGCOLOR="#33CCFF" NOSAVE >
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+Tab</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Switch application
(Next window)</font></font></div>
</td>
</tr>
<tr>
<td><font size=-1>Alt+Tab</font></td>
<td>
<div align=right><font color="#000000"><font size=-1>Switch application
(Previous window)</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Shift+Alt+arrow
keys</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Move pointer (fast)</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Shift+Ctrl+arrow
keys</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Move pointer (slow)</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F1</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Open window menu</font></font></div>
</td>
</tr>
<tr NOSAVE>
<td VALIGN=TOP WIDTH="53%" NOSAVE><font color="#000000"><font size=-1>Alt+F2</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Open main menu</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F3</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Lower window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F4</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Close window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F5</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Next window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F6</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Previous window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F7</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Move window</font></font></div>
</td>
</tr>
<tr NOSAVE>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F8</font></font></td>
<td VALIGN=TOP WIDTH="47%" NOSAVE>
<div align=right><font color="#000000"><font size=-1>Resize window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F9</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Iconify window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Alt+F10</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Maximize window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="53%"><font color="#000000"><font size=-1>Ctrl+F1
to F10</font></font></td>
<td VALIGN=TOP WIDTH="47%">
<div align=right><font color="#000000"><font size=-1>Switch to desktop
1 to 10</font></font></div>
</td>
</tr>
</table></center>
<p><b><i><u><font color="#000000"><font size=-1>Mouse bindings</font></font></u></i></b>
<center>
<p><img SRC="title_legend.jpg" ></center>
<center><table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BGCOLOR="#33CCFF" NOSAVE >
<tr>
<td ALIGN=CENTER VALIGN=TOP WIDTH="21%">
<center><b><u><font color="#000000"><font size=-1>Mouse button</font></font></u></b></center>
</td>
<td VALIGN=TOP WIDTH="14%"><b><u><font color="#000000"><font size=-1>Click</font></font></u></b></td>
<td ALIGN=CENTER VALIGN=TOP WIDTH="19%">
<center><b><u><font color="#000000"><font size=-1>Context</font></font></u></b></center>
</td>
<td ALIGN=CENTER VALIGN=TOP WIDTH="46%">
<center><b><u><font color="#000000"><font size=-1>Action</font></font></u></b></center>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 1</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Open window's operations
menu</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Double</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 1</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Close window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Left</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 1</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Open window's operations
menu</font></font></div>
</td>
</tr>
<tr NOSAVE>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%" NOSAVE><font color="#000000"><font size=-1>Button
3</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Stick/unstick window</font></font></div>
</td>
</tr>
<tr NOSAVE>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%" NOSAVE><font color="#000000"><font size=-1>Title
bar</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Raise/move window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Double</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Title bar</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Maximize window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Left</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Title bar</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>shade/unshade window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 6</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>iconify window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Left</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 6</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>iconify window</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 4</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Maximize/un-maximize
window</font></font></div>
</td>
</tr>
<tr NOSAVE>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Left</font></font></td>
<td VALIGN=TOP WIDTH="14%" NOSAVE><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Button 4</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Maximize/un-maximize
window</font></font></div>
</td>
</tr>
<tr>
<td><font size=-1>Left</font></td>
<td><font size=-1>Single</font></td>
<td><font size=-1>Button 5</font></td>
<td>
<div align=right><font size=-1>Shade/unshade window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Right</font></td>
<td><font size=-1>Single</font></td>
<td><font size=-1>Button 5</font></td>
<td>
<div align=right><font size=-1>Shade/unshade window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Left</font></td>
<td><font size=-1>Single</font></td>
<td><font size=-1>Button 2</font></td>
<td>
<div align=right><font size=-1>Close window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Right</font></td>
<td><font size=-1>Single</font></td>
<td><font size=-1>Button 2</font></td>
<td>
<div align=right><font size=-1>Close window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Left</font></td>
<td><font size=-1>Single+Shift key</font></td>
<td><font size=-1>Button 2</font></td>
<td>
<div align=right><font size=-1>Destroy window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Right</font></td>
<td><font size=-1>Single+Shift key</font></td>
<td><font size=-1>Button 2</font></td>
<td>
<div align=right><font size=-1>Destroy window</font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Right</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Root window</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Open main menu</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Middle</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Root window</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Open window's operations
menu</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="21%"><font color="#000000"><font size=-1>Left</font></font></td>
<td VALIGN=TOP WIDTH="14%"><font color="#000000"><font size=-1>Single</font></font></td>
<td VALIGN=TOP WIDTH="19%"><font color="#000000"><font size=-1>Root window</font></font></td>
<td ALIGN=RIGHT VALIGN=TOP WIDTH="46%">
<div align=right><font color="#000000"><font size=-1>Display list of running
applications</font></font></div>
</td>
</tr>
<tr>
<td><font size=-1>Middle</font></td>
<td><font size=-1>Single</font></td>
<td><font size=-1>Window border</font></td>
<td>
<div align=right><font size=-1>Move window</font></div>
</td>
</tr>
<tr>
<td><font size=-1>Right</font></td>
<td><font size=-1>Single+Shift key</font></td>
<td><font size=-1>Window border</font></td>
<td>
<div align=right><font color="#000000"><font size=-1>Move window</font></font></div>
</td>
</tr>
<tr>
<td><font size=-1>Right</font></td>
<td><font size=-1>Single+Shift key</font></td>
<td><font size=-1>Window border</font></td>
<td>
<div align=right><font color="#000000"><font size=-1>Move window</font></font></div>
</td>
</tr>
</table></center>
<p><b><u><font color="#000000"><font size=-1>The file Manager, XFTree</font></font></u></b>
<p><font color="#000000"><font size=-1>XFTree is a very simple file manager,
which provides a graphical user interface to most common file operations.</font></font>
<p><font color="#000000"><font size=-1>XFTree supports drag and drop to
itself, other GTK+ applications and, of course, the XFce panel.</font></font>
<center>
<p><img SRC="xftree.jpg" ></center>
<p><b><i><u><font color="#000000"><font size=-1>Usage</font></font></u></i></b>
<p><font color="#000000"><font size=-1>Starting xftree will use the home
directory as the default root if no directory is given as argument.</font></font>
<ul>
<li>
<font color="#000000"><font size=-1><u>Right mouse button:
</u>popup a
context menu (which depends on selected items).</font></font></li>
</ul>
<center>
<p><br><img SRC="xftree_menu.jpg" ></center>
<ul>
<li>
<font color="#000000"><font size=-1><u>Left mouse button:</u> select an
item; [SHIFT] allow selection of multiple items and [CTRL] will add/remove
items to the selection.</font></font></li>
<li>
<font color="#000000"><font size=-1><u>Middle mouse button:
</u>convenient
for drag and drop operations, since the selection will not be changed.</font></font></li>
<li>
<font color="#000000"><font size=-1><u>Double-click:</u> start the selected
application or if the item is a regular file, start the registered program
and pass the file name as argument.</font></font></li>
<li>
<font color="#000000"><font size=-1><u>Alt+Double-click:
</u>same as above
but start a terminal before executing user command. If selected item is
a directory, change the root of the tree to that directory.</font></font></li>
</ul>
<p><br><font color="#000000"><font size=-1><u>Drag and Drop:</u> by default,
drag and drop copy the items. If [SHIFT] is pressed during drag, items
are moved instead of copied. The same way, pressing [CTRL+SHIFT] during
drag and drop will link the destination to the source (symbolic link).
Drag and drop of URL is allowed, e.g. from mozilla as long as CURL is available.
The corresponding file will be downloaded.</font></font>
<p><b><i><u><font color="#000000"><font size=-1>Keyboard shortcuts</font></font></u></i></b>
<br>
<center><table CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BGCOLOR="#33CCFF" NOSAVE >
<tr NOSAVE>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+A</font></font></td>
<td VALIGN=TOP WIDTH="75%" NOSAVE>
<div align=right><font color="#000000"><font size=-1>select all items of
the selected directory.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+Shift+A</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>Unselect all.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Ctrl+A</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>open the 'about' dialog.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+D</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>duplicate the marked
file.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+Shift+D</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>hide/show hidden files
(dotfiles).</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+E</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>empty the trash directory.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+F</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>find files in the
current directory.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+G</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>Go to selected directory
or ask the user if no directory entries are selected.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+H</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>go to home directory.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+I</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>properties / information
of selected items.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+J</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>register an application
for a file name suffix.</font></font></div>
</td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="25%"><font color="#000000"><font size=-1>Alt+K</font></font></td>
<td VALIGN=TOP WIDTH="75%">
<div align=right><font color="#000000"><font size=-1>create a new file.</font></font></div>
</td>
</tr>