# HG changeset patch # User Christophe Lincoln # Date 1308245262 -7200 # Node ID 4e09b69a4f570572a32fed2883071c34490d003a # Parent 75d3beebab35b65691f782c42b52dbfecfada675 tazdrop: use new yad --skip-taskbar (dev did my request :-) diff -r 75d3beebab35 -r 4e09b69a4f57 tazdrop/README --- a/tazdrop/README Thu Jun 16 19:00:56 2011 +0200 +++ b/tazdrop/README Thu Jun 16 19:27:42 2011 +0200 @@ -17,22 +17,16 @@ Auto start the DND window ------------------------- To start TazDrop with your Window manager you have to put these lines in your -autostart script (For Openbox: ~/.config/openbox/autostart.sh) +autostart script (For Openbox: ~/.config/openbox/autostart.sh) to have a DND +window with some text: # TazDrop Drag N' Drop handler tazdrop --dnd & +To use an image as DND box, you can configure the image path via tazdrop.conf: -Skip task bar in Openbox ------------------------- -To not show the apps in the panel (lxpanel, tint2) you must add these -settings to your Openbox rc.xml after at the bottom of -the file: - - - no - yes - +# TazDrop Drag N' Drop handler +tazdrop --dnd-image & Misc notes diff -r 75d3beebab35 -r 4e09b69a4f57 tazdrop/tazdrop --- a/tazdrop/tazdrop Thu Jun 16 19:00:56 2011 +0200 +++ b/tazdrop/tazdrop Thu Jun 16 19:27:42 2011 +0200 @@ -32,9 +32,10 @@ $(gettext "Usage:") $(basename $0) [--option|file|url] $(gettext "Options:") - --usage $(gettext "Display this small help") - --dnd $(gettext "Display the desktop Drag N' Drop window") - --notes $(gettext "Display your dropped text notes") + --usage $(gettext "Display this small help") + --dnd $(gettext "Display the desktop Drag N' Drop window") + --dnd-image $(gettext "Display the desktop Drag N' Drop image") + --notes $(gettext "Display your dropped text notes") EOT } @@ -60,7 +61,7 @@ drop_main() { yad --text "$DROP_TEXT" \ --geometry="${DROP_SIZE}$DROP_GEOM" \ - --name="tazdrop" \ + --name="tazdrop" --skip-taskbar \ --dnd --sticky --on-top \ --undecorated --no-buttons \ --command="$0" @@ -69,8 +70,8 @@ # Image GUI function drop_image() { yad --image=$DROP_IMAGE \ - --geometry="$DROP_GEOM" \ - --name="tazdrop" \ + --geometry="$DROP_IMAGE_GEOM" \ + --name="tazdrop" --skip-taskbar \ --dnd --sticky --on-top \ --undecorated --no-buttons \ --command="$0"