slitaz-tools view tazdrop/README @ rev 625

Gettextize setmixer and make pot
author Christophe Lincoln <pankso@slitaz.org>
date Tue Jun 14 22:47:24 2011 +0200 (2011-06-14)
parents 3379cae52afe
children 4e09b69a4f57
line source
1 SliTaz Drag N' Drop tool
2 ================================================================================
5 TazDrop is a small window which can run in a corner of a screen and as an
6 expanded panel and let you Drag N' Drop any kind of content and perform an
7 action on it. If you drop an URL to a site it will open a browser to its
8 location, if the URL is a file (tarball, iso, PDF, etc) it will download it.
9 It can also handle email addresses, SliTaz Packages (drop one on TazDrop and
10 it will install it) and if you drop a folder it will create a tar.bz2 archive
11 of it. You can even drop one of its options, try to drop: --notes
13 Note: This tool is separate from tazboxes since it runs permanently and has
14 quite a few lines of code.
17 Auto start the DND window
18 -------------------------
19 To start TazDrop with your Window manager you have to put these lines in your
20 autostart script (For Openbox: ~/.config/openbox/autostart.sh)
22 # TazDrop Drag N' Drop handler
23 tazdrop --dnd &
26 Skip task bar in Openbox
27 ------------------------
28 To not show the apps in the panel (lxpanel, tint2) you must add these
29 settings to your Openbox rc.xml after <applications> at the bottom of
30 the file:
32 <application name="tazdrop">
33 <focus>no</focus>
34 <skip_taskbar>yes</skip_taskbar>
35 </application>
38 Misc notes
39 ----------
41 * Dropped folders will be archived to tar.bz2
42 * Text content is written to $HOME/.cache/tazdrop.notes
43 * Applications are logically configurable as well as the tool
44 behaviour
47 ================================================================================