<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>aidanjm's stuff</title>
	<atom:link href="http://aidanjm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aidanjm.wordpress.com</link>
	<description></description>
	<pubDate>Tue, 27 May 2008 04:18:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Split lossless audio (ape, flac, wv, wav) by cue file in Ubuntu</title>
		<link>http://aidanjm.wordpress.com/2007/02/15/split-lossless-audio-ape-flac-wv-wav-by-cue-file/</link>
		<comments>http://aidanjm.wordpress.com/2007/02/15/split-lossless-audio-ape-flac-wv-wav-by-cue-file/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 20:54:04 +0000</pubDate>
		<dc:creator>aidanjm</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[ape]]></category>

		<category><![CDATA[cue]]></category>

		<category><![CDATA[cuetag]]></category>

		<category><![CDATA[cuetools]]></category>

		<category><![CDATA[flac]]></category>

		<guid isPermaLink="false">http://aidanjm.wordpress.com/2007/02/15/split-lossless-audio-ape-flac-wv-wav-by-cue-file/</guid>
		<description><![CDATA[Lossless audio files can be split by cue file using &#8220;shnsplit&#8221; (part of the &#8220;shntool&#8221; package). You will also need the &#8220;cuebreakpoints&#8221; tool (part of the &#8220;cuetools&#8221; package). To install cuetools and shntool in Ubuntu/ Kubuntu, open a terminal window and enter the following:
sudo aptitude install cuetools shntool
You will also need software for your prefered [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Lossless audio files can be split by cue file using &#8220;shnsplit&#8221; (part of the &#8220;shntool&#8221; package). You will also need the &#8220;cuebreakpoints&#8221; tool (part of the &#8220;cuetools&#8221; package). To install cuetools and shntool in Ubuntu/ Kubuntu, open a terminal window and enter the following:</p>
<p><strong>sudo aptitude install cuetools shntool</strong></p>
<p>You will also need software for your prefered lossless audio format. For Monkey&#8217;s Audio you need to install &#8220;mac&#8221; - see <a href="http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/">here</a> for details. For FLAC and WavPack formats you need to install &#8220;flac&#8221; and &#8220;wavpack&#8221; respectively:</p>
<p><strong>sudo aptitude install flac wavpack</strong></p>
<p>Shnsplit requires a list of break-points with which to split an audio file. Conveniently, cuebreakpoints prints the break-points from a cue or toc file in a format that can be used by shnsplit. You can pipe the output of cuebreakpoints to shnsplit as follows:</p>
<p><strong>cuebreakpoints sample.cue | shnsplit -o flac sample.flac</strong></p>
<p>In this example, a flac file called &#8220;sample.flac&#8221; is split according to the break-points contained in &#8220;sample.cue&#8221; and the results are output in the flac format.</p>
<p>The output file format is specified via the &#8220;-o&#8221; option. If you don&#8217;t specify an output format your split files will be in shntool&#8217;s default format (i.e., wave files, &#8220;wav&#8221;).</p>
<p>To split a monkey&#8217;s audio file by cue file and output the results in the flac format:</p>
<p><strong>cuebreakpoints sample.cue | shnsplit -o flac sample.ape</strong></p>
<p>Note that a default prefix &#8220;split-track&#8221; is used to name the output files. (The default output format is split-track01, split-track02, split-track03, &#8230;). You can specify your own prefix via the &#8220;-a&#8221; option.</p>
<p>To see all the options for shntool  split type &#8220;shntool split -h&#8221; or &#8220;shnsplit -h&#8221;.</p>
<p><em>Transferring tags</em></p>
<p>The audio files output by shnsplit do not contain tag data. However you can use the &#8220;cuetag&#8221; script (installed as part of the cuetools package) to transfer tag data directly from a cue file to your split audio files. You specify the individual audio files corresponding to the tracks contained in your cue file as follows: </p>
<p><strong>cuetag sample.cue split-track01.flac split-track02.flac split-track03.flac split-track04.flac<br />
</strong></p>
<p>This will transfer the tag data contained in &#8220;sample.cue&#8221; to the flac audio tracks &#8220;split-track01.flac&#8221; &#8220;split-track02.flac&#8221; &#8220;split-track03.flac&#8221; and &#8220;split-track04.flac&#8221;.</p>
<p>The above command could be streamlined as:</p>
<p><strong>cuetag sample.cue split-track*.flac</strong></p>
<p>Cuetag works with flac, ogg and mp3 files. The cuetag script is not currently able to handle file names containing spaces.</p>
<p><em>Note:</em> If you are running flac version 1.1.4 or higher then you may need to make some small changes to the cuetag script before it will work correctly with flac files. Open the cuetag script (for Ubuntu installations it will be located at /usr/bin/cuetag) in a text editor and make these two changes: 1) search for the text &#8220;remove-vc-all&#8221; and replace it with &#8220;remove-all-tags&#8221;. 2) search for the &#8220;import-vc-from&#8221; and replace with &#8220;import-tags-from&#8221;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aidanjm.wordpress.com/52/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aidanjm.wordpress.com/52/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aidanjm.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aidanjm.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aidanjm.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aidanjm.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aidanjm.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aidanjm.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aidanjm.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aidanjm.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aidanjm.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aidanjm.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aidanjm.wordpress.com&blog=617299&post=52&subd=aidanjm&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aidanjm.wordpress.com/2007/02/15/split-lossless-audio-ape-flac-wv-wav-by-cue-file/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/aidanjm-128.jpg" medium="image">
			<media:title type="html">aidanjm</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting Monkey&#8217;s Audio (ape) to flac in Ubuntu</title>
		<link>http://aidanjm.wordpress.com/2007/02/04/converting-monkey%e2%80%99s-audio-ape-files-to-flac-in-ubuntu/</link>
		<comments>http://aidanjm.wordpress.com/2007/02/04/converting-monkey%e2%80%99s-audio-ape-files-to-flac-in-ubuntu/#comments</comments>
		<pubDate>Sun, 04 Feb 2007 10:54:30 +0000</pubDate>
		<dc:creator>aidanjm</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Monkey's Audio]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[ape]]></category>

		<category><![CDATA[flac]]></category>

		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://aidanjm.wordpress.com/2007/02/04/converting-monkey%e2%80%99s-audio-ape-files-to-flac-in-ubuntu/</guid>
		<description><![CDATA[Converting .ape files to the flac format in linux requires both the &#8220;mac&#8221; and &#8220;flac&#8221; software packages. For details on installing mac in ubuntu see here. To install flac enter the following in a terminal window:
sudo aptitude install flac
Audio file format conversions can be performed from the command line, or via the GUI using soundKonverter.
If [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Converting .ape files to the flac format in linux requires both the &#8220;mac&#8221; and &#8220;flac&#8221; software packages. For details on installing mac in ubuntu <a href="http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/">see here</a>. To install flac enter the following in a terminal window:</p>
<p><strong>sudo aptitude install flac</strong></p>
<p>Audio file format conversions can be performed from the command line, or via the GUI using soundKonverter.</p>
<p>If you prefer to work from the command line, then you will want to install shntool:</p>
<p><strong>sudo aptitude install shntool</strong></p>
<p>Shntool functions as a frontend of sorts for lossless audio software (mac, flac, wavpack). It performs a range of functions including facilitating the conversion of music files between the various lossless formats (ape, flac, wv, wav, etc). Note that shntool has native support for .wav files only; if you want it to work with .ape, .flac or .wv files then you must have the appropriate helper programs (mac, flac, wavpack respectively) installed. For a full list of the lossless formats supported by shntool type &#8220;shntool -f&#8221;. To convert all .ape files in a directory to flac using shntool:</p>
<p><strong>shntool conv -o flac *.ape</strong></p>
<p>This command can also be given as:</p>
<p><strong>shnconv -o flac *.ape</strong></p>
<p>An alternative to using shntool is to work via the mac and flac programs directly; to convert a monkey&#8217;s audio file to flac:</p>
<p><strong>mac sample.ape sample.wav -d<br />
flac -o sample.flac sample.wav<br />
</strong></p>
<p>It is possible to pipe the output of mac directly into the flac tool - you would get equivalent results by issuing:</p>
<p><strong>mac sample.ape - -d | flac -o sample.flac -</strong></p>
<p>To convert a directory of ape files to flac:</p>
<p><strong>for i in *.ape; do mac &#8220;$i&#8221; - -d | flac -o &#8220;${i%*.ape}.flac&#8221; -; done</strong></p>
<p>(Note: if you are copying the above command and it pasting into the terminal window, you will need to replace the &#8220;curly quotes&#8221; used by WordPress with the straight/ non-curly quotation marks used by the shell.)</p>
<p>You could put the above line in a bash script to simplifiy the conversion process.</p>
<p><em>SoundKonverter - Audio file format converter</em></p>
<p>SoundKonvertor is a GUI frontend to programs such as mac and flac. It allows you to convert your music files between the various formats using a point and click interface. This is an excellent option if you find working with the command line to be tedious. Note that SoundKonverter requires mac and flac to be installed to be able to work with monkey&#8217;s audio and flac formats respectively. To install soundKonverter:</p>
<p><strong>sudo aptitude install soundkonverter</strong></p>
<p>soundKonverter can be launched by selecting the appropriate icon from your applications menu (in KDE it is installed under the Multimedia menu).</p>
<p><em>Preserving ape tags</em></p>
<p>Unfortunately shntool and soundKonverter do not preserve existing tag information (album, artist, genre, etc.) when converting monkey&#8217;s audio files to flac or other lossless formats.</p>
<p>Jared Breeland has written a nice bash script (<a href="http://legroom.net/modules.php?op=modload&amp;name=Open_Source&amp;file=index&amp;page=software&amp;app=convtoflac">convtoflac.sh</a>) which will convert your monkey&#8217;s audio files to flac preserving your precious tag information in the process. The convtoflac.sh script was written on a Gentoo system but with a very slight amount of tweaking it will work on your Ubuntu/ Kubuntu system. Note: the script calls on a small program (<a href="http://legroom.net/modules.php?op=modload&amp;name=Open_Source&amp;file=index&amp;page=software&amp;app=apeinfo">apeinfo</a>) to extract tag information information from the ape files which is then transferred to your converted files. Jared provides a binary (compiled) version of apeinfo and the source code. The binary was compiled on a Gentoo Linux system (running GCC 3.4.4 and glibc 2.3.5) - it works fine on my Ubuntu and Kubuntu 7.04 installations. Instructions for Ubuntu/ Kubuntu users: If you don&#8217;t already have one, create a directory called &#8220;bin&#8221; in your home directory, and download and place the convtoflac.sh script and the apeinfo binary file there. Open the convtoflac.sh script in a text editor and make these two small changes to the script: 1) look for the line containing &#8220;SED=/usr/bin/sed&#8221; and change it to &#8220;SED=/bin/sed&#8221; (this is needed because the sed binary - a text processing program - is located differently in Ubuntu than Gentoo). 2) Look for the line containing &#8220;APEINFO=/usr/local/bin/apeinfo&#8221; and change it to &#8220;APEINFO=~/bin/apeinfo&#8221;. You also need to ensure that the script and also the apeinfo binary have their execute bit set (this allows them to be run):</p>
<p><strong>chmod a+x ~/bin/convtoflac.sh<br />
chmod a+x ~/bin/apeinfo</strong></p>
<p>To convert an ape file to flac using the convtoflac.sh script enter the following in a terminal window:</p>
<p><strong>convtoflac.sh sample.ape</strong></p>
<p>To convert an entire directory of ape files to flac:</p>
<p><strong>for i in *.ape; do convtoflac.sh &#8220;$i&#8221;; done</strong></p>
<p>(Note: if you are copying the above command and it pasting into the terminal window, you will need to replace the “curly quotes” used by WordPress with the straight/ non-curly quotation marks used by the shell.)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aidanjm.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aidanjm.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aidanjm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aidanjm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aidanjm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aidanjm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aidanjm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aidanjm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aidanjm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aidanjm.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aidanjm.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aidanjm.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aidanjm.wordpress.com&blog=617299&post=51&subd=aidanjm&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aidanjm.wordpress.com/2007/02/04/converting-monkey%e2%80%99s-audio-ape-files-to-flac-in-ubuntu/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/aidanjm-128.jpg" medium="image">
			<media:title type="html">aidanjm</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Monkey&#8217;s Audio (ape) files in Ubuntu</title>
		<link>http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/</link>
		<comments>http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 06:53:37 +0000</pubDate>
		<dc:creator>aidanjm</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[ape]]></category>

		<guid isPermaLink="false">http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/</guid>
		<description><![CDATA[To work with monkey&#8217;s audio (ape) files you need the &#8220;mac&#8221; command line tool. This software isn&#8217;t available in the Ubuntu repositories so you will need to either compile mac yourself, or alternatively install it from a .deb file.
Installing mac from a .deb file
I&#8217;ve put a .deb file for the mac software here (this is [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To work with monkey&#8217;s audio (ape) files you need the &#8220;mac&#8221; command line tool. This software isn&#8217;t available in the Ubuntu repositories so you will need to either compile mac yourself, or alternatively install it from a .deb file.</p>
<p><em>Installing mac from a .deb file</em></p>
<p>I&#8217;ve put a .deb file for the mac software <a href="http://members.iinet.net.au/~aidanjm/mac-3.99-u4_b3-1_i386.deb">here</a> (this is for 386 systems). Use it to install mac when you do not want to compile from source. It was compiled on a Kubuntu 6.10 system (works fine with Kubuntu/ Ubuntu 7.04). Save the file by right-clicking on the link and choosing &#8220;Save target as&#8221; or &#8220;Save as&#8221;. To install, open a terminal window, navigate to the directory containing the downloaded file, then enter the following:</p>
<p><strong>sudo dpkg -i mac-3.99-u4_b3-1_i386.deb</strong></p>
<p>To confirm the install went ok type “mac” in the terminal window - you should get a listing of mac&#8217;s usage details.</p>
<p>[Note: <a href="http://www.rarewares.org/index.php">RareWares</a> provides monkey's audio software for Debian users.]</p>
<p><em>Compiling mac from the source code</em></p>
<p>You need to install the development tools required to compile a program from source:</p>
<p><strong>sudo aptitude install build-essential</strong></p>
<p>Note that &#8220;nasm&#8221; (a dependency of mac) must also be installed before attempting to compile mac:</p>
<p><strong>sudo aptitude install nasm</strong></p>
<p>Click <a href="http://supermmx.org/download/linux/mac/mac-3.99-u4-b5.tar.gz">here</a> to download the latest version (3.99) of the mac source code from the author&#8217;s web page. (I&#8217;ve placed a copy of the source <a href="http://members.iinet.net.au/~aidanjm/mac-3.99-u4-b5.tar.gz">here</a> for if the author&#8217;s site is down).</p>
<p>Open a terminal window and uncompress the source code, and navigate into the source directory:</p>
<p><strong>tar -zxvf mac-3.99-u4-b5.tar.gz<br />
cd mac-3.99-u4-b5.tar.gz</strong></p>
<p>Configure, make and install the source:</p>
<p><strong>./configure<br />
make<br />
sudo make install</strong></p>
<p>Confirm the install went ok by typing “mac” in the terminal window (should get a listing of mac’s usage details).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aidanjm.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aidanjm.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aidanjm.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aidanjm.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aidanjm.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aidanjm.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aidanjm.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aidanjm.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aidanjm.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aidanjm.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aidanjm.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aidanjm.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aidanjm.wordpress.com&blog=617299&post=46&subd=aidanjm&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aidanjm.wordpress.com/2007/01/26/using-monkeys-audio-ape-files-in-ubuntu/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/aidanjm-128.jpg" medium="image">
			<media:title type="html">aidanjm</media:title>
		</media:content>
	</item>
		<item>
		<title>Splitting mp3 by cue file in ubuntu</title>
		<link>http://aidanjm.wordpress.com/2007/01/18/splitting-mp3-by-cue-file-under-ubuntu-linux/</link>
		<comments>http://aidanjm.wordpress.com/2007/01/18/splitting-mp3-by-cue-file-under-ubuntu-linux/#comments</comments>
		<pubDate>Wed, 17 Jan 2007 13:51:03 +0000</pubDate>
		<dc:creator>aidanjm</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[cue]]></category>

		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://aidanjm.wordpress.com/2007/01/18/splitting-mp3-by-cue-file-under-ubuntu-linux/</guid>
		<description><![CDATA[Use mp3splt to break up an mp3 file according to the break points contained in a cue file. To install mp3splt open a terminal window and enter the following:
sudo aptitude install mp3splt
To split an mp3 file named &#8220;music.mp3&#8243; using a cue file named &#8220;music.cue&#8221; issue the following in a terminal window:
mp3splt -c music.cue music.mp3
Links:
Mp3splt Homepage
Music [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Use mp3splt to break up an mp3 file according to the break points contained in a cue file. To install mp3splt open a terminal window and enter the following:</p>
<p><strong>sudo aptitude install mp3splt</strong></p>
<p>To split an mp3 file named &#8220;music.mp3&#8243; using a cue file named &#8220;music.cue&#8221; issue the following in a terminal window:</p>
<p><strong>mp3splt -c music.cue music.mp3</strong></p>
<p>Links:<br />
<a href="http://mp3splt.sourceforge.net/mp3splt_page/home.php">Mp3splt Homepage</a><br />
<a href="http://stommel.tamu.edu/~baum/linux-music.html">Music file processing on Linux</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aidanjm.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aidanjm.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aidanjm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aidanjm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aidanjm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aidanjm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aidanjm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aidanjm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aidanjm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aidanjm.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aidanjm.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aidanjm.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aidanjm.wordpress.com&blog=617299&post=34&subd=aidanjm&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aidanjm.wordpress.com/2007/01/18/splitting-mp3-by-cue-file-under-ubuntu-linux/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/aidanjm-128.jpg" medium="image">
			<media:title type="html">aidanjm</media:title>
		</media:content>
	</item>
		<item>
		<title>Opera 9 + Ubuntu or Kubuntu - get rid of the tray icon</title>
		<link>http://aidanjm.wordpress.com/2007/01/17/opera-9-ubuntu-or-kubuntu-get-rid-of-the-ugly-tray-icon/</link>
		<comments>http://aidanjm.wordpress.com/2007/01/17/opera-9-ubuntu-or-kubuntu-get-rid-of-the-ugly-tray-icon/#comments</comments>
		<pubDate>Wed, 17 Jan 2007 07:54:05 +0000</pubDate>
		<dc:creator>aidanjm</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Opera]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://aidanjm.wordpress.com/2007/01/17/opera-9-ubuntu-or-kubuntu-get-rid-of-the-ugly-tray-icon/</guid>
		<description><![CDATA[
The tray icon for Opera can be hidden by launching Opera with the switch &#8220;-notrayicon&#8221;. To do this, open a terminal window and enter the following:
opera -notrayicon
Opera will launch without an icon in the notification area. This works in ubuntu and kubuntu. An alternative method is to type Alt-F2 and enter &#8220;opera -notrayicon&#8221; into the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://aidanjm.files.wordpress.com/2007/01/opera.png" alt="Opera windows icon" /><br />
The tray icon for Opera can be hidden by launching Opera with the switch &#8220;-notrayicon&#8221;. To do this, open a terminal window and enter the following:</p>
<p><strong>opera -notrayicon</strong></p>
<p>Opera will launch without an icon in the notification area. This works in ubuntu and kubuntu. An alternative method is to type Alt-F2 and enter &#8220;opera -notrayicon&#8221; into the run dialog box.</p>
<p>For a more convenient solution in Kubuntu, you can modify the KDE menu shortcut for Opera to include the -notrayicon switch. (This allows you to launch the application from the menu and the tray icon will remain hidden.) Open the KDE Menu editor (right click on the blue kde button), navigate to the entry for Opera, and add the -notrayicon switch to the launch command:</p>
<p><strong>opera %u -notrayicon</strong></p>
<p>Don&#8217;t forget to save the changes before quitting the KDE menu editor.</p>
<p>Additional tip: access Opera&#8217;s config options by entering &#8220;opera:config&#8221; in the address bar.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/aidanjm.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/aidanjm.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aidanjm.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aidanjm.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aidanjm.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aidanjm.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aidanjm.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aidanjm.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aidanjm.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aidanjm.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aidanjm.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aidanjm.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aidanjm.wordpress.com&blog=617299&post=30&subd=aidanjm&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aidanjm.wordpress.com/2007/01/17/opera-9-ubuntu-or-kubuntu-get-rid-of-the-ugly-tray-icon/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/aidanjm-128.jpg" medium="image">
			<media:title type="html">aidanjm</media:title>
		</media:content>

		<media:content url="http://aidanjm.files.wordpress.com/2007/01/opera.png" medium="image">
			<media:title type="html">Opera windows icon</media:title>
		</media:content>
	</item>
	</channel>
</rss>