<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Do Know Evil - A Blog by Tyler Mulligan &#187; nautilus</title> <atom:link href="http://www.doknowevil.net/tag/nautilus/feed/" rel="self" type="application/rss+xml" /><link>http://www.doknowevil.net</link> <description>Tips and Tricks About Computers, Web Development, Linux, the Internet and the Like</description> <lastBuildDate>Sat, 16 Jul 2011 01:25:35 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.5</generator> <item><title>RabbitVCS is the new Nautilus SVN</title><link>http://www.doknowevil.net/2010/05/04/rabbitvcs-is-the-new-nautilus-svn/</link> <comments>http://www.doknowevil.net/2010/05/04/rabbitvcs-is-the-new-nautilus-svn/#comments</comments> <pubDate>Wed, 05 May 2010 01:59:14 +0000</pubDate> <dc:creator>Tyler Mulligan</dc:creator> <category><![CDATA[Computers]]></category> <category><![CDATA[GNOME]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[nautilus]]></category> <category><![CDATA[SVN]]></category><guid isPermaLink="false">http://www.doknowevil.net/?p=579</guid> <description><![CDATA[I should have written about this months ago. Readers have replied to my previous post about nautilus svn, which I claimed to be the first that didn&#8217;t suck. This is the evolution of it, RabbitVCS (Version Control System), which aims to use the same intuitive, integrated gui for other version control systems, such as git]]></description> <content:encoded><![CDATA[<p>I should have written about this months ago.  Readers have <a href="http://www.doknowevil.net/2009/04/28/nautilussvn-finally-an-svn-gui-for-linux-that-doesnt-totally-suck/">replied to my previous post about nautilus svn</a>, which I claimed to be the first that didn&#8217;t suck.  This is the evolution of it, <a href="http://www.rabbitvcs.org">RabbitVCS (Version Control System)</a>, which aims to use the same intuitive, integrated gui for other version control systems, such as <a href="http://en.wikipedia.org/wiki/Git_%28software%29" target="_blank">git</a> (check the <a href="http://wiki.rabbitvcs.org/wiki/about/roadmap">rabbitvcs roadmap</a> for details on expected support for different versioning system.</p><p><a href="http://www.doknowevil.net/wp-content/uploads/2010/05/context_menu.png"><img src="http://www.doknowevil.net/wp-content/uploads/2010/05/context_menu.png" alt="" title="context_menu" width="827" height="559" class="alignnone size-full wp-image-580" /></a><br /> credit to rabbitvcs for the screenshot</p> ]]></content:encoded> <wfw:commentRss>http://www.doknowevil.net/2010/05/04/rabbitvcs-is-the-new-nautilus-svn/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Adding context (right click) menu options to nautilus (Ubuntu&#039;s default file manager) with nautilus-actions</title><link>http://www.doknowevil.net/2010/05/04/adding-context-right-click-menu-options-to-nautilus-ubuntus-default-file-manager-with-nautilus-actions/</link> <comments>http://www.doknowevil.net/2010/05/04/adding-context-right-click-menu-options-to-nautilus-ubuntus-default-file-manager-with-nautilus-actions/#comments</comments> <pubDate>Wed, 05 May 2010 01:46:22 +0000</pubDate> <dc:creator>Tyler Mulligan</dc:creator> <category><![CDATA[Application Management]]></category> <category><![CDATA[Computers]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[open source]]></category> <category><![CDATA[nautilus]]></category><guid isPermaLink="false">http://www.doknowevil.net/?p=562</guid> <description><![CDATA[Intro Previously, I had written about enqueuing files with nautilus scripts. Since then, I have learned (and forgotten about) nautilus-actions. Which is a similar way to attack the issue but it using a more intuitive and decoration approach, as well as having the ability to be on the first level of the context menu hierarchy.]]></description> <content:encoded><![CDATA[<h2>Intro</h2><p>Previously, I had <a href="http://www.doknowevil.net/2009/11/08/using-nautilus-scripting-abilities-to-integrate-right-click-file-enqueues-with-mocp">written about enqueuing files with nautilus scripts</a>.  Since then, I have learned (and forgotten about) nautilus-actions.  Which is a similar way to attack the issue but it using a more intuitive and decoration approach, as well as having the ability to be on the first level of the context menu hierarchy.</p><pre class="brush:bash">sudo apt-get install nautilus-actions
nautilus-actions-config</pre><p>The approach to getting the example of enqueuing files to mocp accomplished is a bit different using this approach as you don&#8217;t need to go through the script as you did before (though you can if you want, it&#8217;s an unnecessary step).  Here, as my screenshot shows, I directly call mocp from /usr/bin with the -a flag and use the $M variable the legend provided me with to pass a list of files and their full paths to mocp.</p><p><a href="http://www.doknowevil.net/wp-content/uploads/2010/05/enqueue-to-moc-with-nautilus-actions.png"><img src="http://www.doknowevil.net/wp-content/uploads/2010/05/enqueue-to-moc-with-nautilus-actions-1024x640.png" alt="" title="enqueue-to-moc-with-nautilus-actions" width="1024" height="640" class="alignnone size-large wp-image-570" /></a></p><p>You&#8217;ll also want to change the conditions on the Conditions tab.  I set it to allow multiple files from both folders and files.  The default is to allow only a single file.</p><p><a href="http://www.doknowevil.net/wp-content/uploads/2010/05/nautilus-actions_conditions.png"><img src="http://www.doknowevil.net/wp-content/uploads/2010/05/nautilus-actions_conditions.png" alt="" title="nautilus-actions_conditions" width="460" height="430" class="alignnone size-full wp-image-571" /></a></p><h2>More</h2><p>This article was inspired by <a href="http://www.hilltopyodeler.com/blog/?p=279">Making Life Easier With Scripts For Nautilus</a>. If you&#8217;re interested in this article, you&#8217;ll probably also like <a href="http://www.doknowevil.net/2010/05/04/apackages-for-nautilus-you-wish-were-installed-by-default-in-ubuntu">my article about nautilus packages you wish were installed by default in ubuntu</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.doknowevil.net/2010/05/04/adding-context-right-click-menu-options-to-nautilus-ubuntus-default-file-manager-with-nautilus-actions/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Object Caching 442/454 objects using disk

Served from: www.doknowevil.net @ 2012-02-07 08:32:39 -->
