<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.xfce.org/extern.php?action=feed&amp;tid=6499&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Xfce Forums / [Solved] resize images in thunar]]></title>
		<link>http://forum.xfce.org/viewtopic.php?id=6499</link>
		<description><![CDATA[The most recent posts in [Solved] resize images in thunar.]]></description>
		<lastBuildDate>Tue, 02 Oct 2012 11:11:06 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27602#p27602</link>
			<description><![CDATA[<p>The way I said, it works.<br />There&#039;s a PPA for it ( <a href="http://sir.projet-libre.org/?page=download" rel="nofollow">http://sir.projet-libre.org/?page=download</a> ), I don&#039;t know if it&#039;s updated (I use Fedora).</p><p>But you can search for other image resizers. I remember in Debian I had another one installed, don&#039;t recall the name. Then maybe the one you install will work too.</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Tue, 02 Oct 2012 11:11:06 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27602#p27602</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27598#p27598</link>
			<description><![CDATA[<p>Is SIR already in ubuntu repository?<br />Is it possible to pass it selected files with %N parameter in custom action?</p>]]></description>
			<author><![CDATA[dummy@example.com (gepponline)]]></author>
			<pubDate>Tue, 02 Oct 2012 06:41:15 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27598#p27598</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27593#p27593</link>
			<description><![CDATA[<p>You can just install SIR (simple image resizer) and create a custom action for it.<br />Command: sir %F<br />Appearance conditions: Directories, image files<br />files: *</p>]]></description>
			<author><![CDATA[dummy@example.com (secipolla)]]></author>
			<pubDate>Mon, 01 Oct 2012 19:38:08 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27593#p27593</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=27591#p27591</link>
			<description><![CDATA[<p>Hi!<br />&#160; I&#039;m new with XFCE ,&#160; I used nautilus and its batch image resizing tool before.<br />It seem strange to me that nobody has create a similar tool for thunar.<br />...However...I use your script and it work fine even if i need to create as many custom action as different dimension i suppose to use.<br />My &quot;problem&quot; is that if i select many big files, it takes some time and there is no way to know when it has finished.<br />Is it possible to add something that show if the script is still working or it has finished?<br />thank you!</p>]]></description>
			<author><![CDATA[dummy@example.com (gepponline)]]></author>
			<pubDate>Mon, 01 Oct 2012 18:50:43 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=27591#p27591</guid>
		</item>
		<item>
			<title><![CDATA[Re: [Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=23733#p23733</link>
			<description><![CDATA[<p>Never mind I got it....&#160; if your interested you open leafpad and paste this;</p><p>#!/bin/sh&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; </p><p>mkdir -p ./Resized/$1</p><p>for file<br />&#160; &#160; do<br />&#160; &#160; if [ ! -e $file ]<br />&#160; &#160; &#160; &#160; then<br />&#160; &#160; &#160; &#160; continue<br />&#160; &#160; fi<br />&#160; &#160; toname=&quot;./Resized/&quot;$1&quot;/&quot;$( echo $file | cut -f1 -d.)&quot;_&quot;$1&quot;.jpg&quot;<br />&#160; &#160; convert -geometry $1x$1 -quality 100 &quot;${file}&quot; &quot;${toname}&quot;<br />done</p><p>save it in your /home as &quot; .resize &quot; without the quotes , allow it to run as program in properties ...... then make a thunar custom action called &quot;resize 640&quot;&#160; and the command &quot;&#160; /home/mike/.resize 640 %N &quot; (changing mike for your user name) then set the appearance settings to &quot;&#160; *.jpg;*.JPG;*.jpeg;*.JPEG;*.png;*.PNG&#160; &quot;&#160; and image files............</p>]]></description>
			<author><![CDATA[dummy@example.com (mike555)]]></author>
			<pubDate>Tue, 15 Nov 2011 21:05:38 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=23733#p23733</guid>
		</item>
		<item>
			<title><![CDATA[[Solved] resize images in thunar]]></title>
			<link>http://forum.xfce.org/viewtopic.php?pid=23731#p23731</link>
			<description><![CDATA[<p>I have xfce 4.8 and need a script for thunar to resize images , I tried a few but they didn&#039;t work in xfce 4.8 ........ anyone got a working script?</p>]]></description>
			<author><![CDATA[dummy@example.com (mike555)]]></author>
			<pubDate>Tue, 15 Nov 2011 20:20:51 +0000</pubDate>
			<guid>http://forum.xfce.org/viewtopic.php?pid=23731#p23731</guid>
		</item>
	</channel>
</rss>
