Skip to content

Commit

Permalink
Update help files
Browse files Browse the repository at this point in the history
  • Loading branch information
caclark committed Oct 24, 2024
1 parent b5e7a8f commit d732d2c
Show file tree
Hide file tree
Showing 16 changed files with 127 additions and 188 deletions.
Binary file modified help-pdf/help.pdf
Binary file not shown.
10 changes: 5 additions & 5 deletions help/Commandline.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<section id="HowdoIopenanimageinanexistingGeeqieapplication" class="section"><div class="inner">
<div class="hgroup pagewide"><h2 class="title">How do I open an image in an existing Geeqie application ?</h2></div>
<div class="region"><div class="contents pagewide">
<p class="para">Use the “--remote” command line option to send commands to an existing Geeqie, for a list of commands supported by the remote switch run:</p>
<div class="code"><pre class="contents"><code>geeqie --remote-help</code></pre></div>
<p class="para">Use command line options to send commands to an existing Geeqie instance, for a list of commands supported by the remote switch run:</p>
<div class="code"><pre class="contents"><code>geeqie --help</code></pre></div>
<p class="para"></p>
</div></div>
</div></section><section id="HowdoIsettheslideshowdelaywhenstartingGeeqieinslideshowfromthecommandline" class="section"><div class="inner">
Expand All @@ -39,10 +39,10 @@
<p class="para">How do I set the slide show delay when starting Geeqie in slide show from the command line ?
</p>
<p class="para">The delay can not be set when used with the standard --slideshow command line switch, as --slideshow uses the delay stored in the configuration file.</p>
<p class="para">For this, use the remote command --slideshow-start to start the slide show after setting the delay with --delay=. The order of the command line is important. For example for a 12 second slide show delay use:</p>
<div class="code"><pre class="contents"><code>geeqie --remote --delay=12 --slideshow-start</code></pre></div>
<p class="para">For this, use the remote command --slideshow to start the slide show after setting the delay with --delay=. The order of the command line is important. For example for a 12 second slide show delay use:</p>
<div class="code"><pre class="contents"><code>geeqie --delay=12 --slideshow</code></pre></div>
<p class="para">Note that if geeqie is running prior to this command, the slide show should also be stopped prior to changing the delay:</p>
<div class="code"><pre class="contents"><code>geeqie --remote --slideshow-stop --delay=12 --slideshow-start</code></pre></div>
<div class="code"><pre class="contents"><code>geeqie --slideshow --delay=12 --slideshow</code></pre></div>
<p class="para"></p>
</div></div>
</div></section>
Expand Down
2 changes: 1 addition & 1 deletion help/GuideOptionsWindow.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<p class="para">
Show the window ID in the titlebar of each window. When multiple Geeqie windows are opened, this option shows a unique identifier for each window. It may be used in conjunction with the command line option:
<span class="em emphasis"><a class="link" href="GuideReferenceCommandLine.html" title="Command Line Options">
<span class="code">--remote --id:&lt;ID&gt;</span>
<span class="code">--id=&lt;ID&gt;</span>
</a></span>
</p>
</dd>
Expand Down
4 changes: 2 additions & 2 deletions help/GuidePluginsConfig.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@
<span class="em emphasis"><a class="link" href="GuideSidebarsSortManager.html#CopyMoveandLink" title="Copy, Move, Link and Desktop actions">Sort Manager Sidebar</a></span>
. The path of the bookmark clicked will be used by the desktop file.
<p class="para"></p>
If the desktop file is called from the menu, when the plugin is executed you are presented with a dialogue which enables a path to be selected. The path selected, appended by the filename currently being processed, is made available to the shell script either as an environment variable or via a call to geeqie --remote. The following code demonstrates the use of both methods:
If the desktop file is called from the menu, when the plugin is executed you are presented with a dialogue which enables a path to be selected. The path selected, appended by the filename currently being processed, is made available to the shell script either as an environment variable or via a call to geeqie. The following code demonstrates the use of both methods:
<div class="code"><pre class="contents"><code> for file in "$@"
do
destination=$(geeqie --remote --get-destination:"$file")
destination=$(geeqie --get-destination:"$file")

echo "$destination"
echo $GEEQIE_DESTINATION
Expand Down
Loading

0 comments on commit d732d2c

Please sign in to comment.