<?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>Nepherte (dot) be &#187; XMonad</title>
	<atom:link href="http://www.nepherte.be/tag/xmonad/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nepherte.be</link>
	<description>About Nepherte, Mosiah and the person behind</description>
	<lastBuildDate>Mon, 30 Aug 2010 18:45:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Clickable workspaces in XMonad with dzen2</title>
		<link>http://www.nepherte.be/clickable-workspaces-in-xmonad-with-dzen2/</link>
		<comments>http://www.nepherte.be/clickable-workspaces-in-xmonad-with-dzen2/#comments</comments>
		<pubDate>Tue, 18 May 2010 20:06:48 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clickable workspaces]]></category>
		<category><![CDATA[dzen2]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=1297</guid>
		<description><![CDATA[While XMonad can be controlled entirely by the keyboard, it can still be a useful feature to change your workspace with a mouse click. I&#8217;ve been looking for this for quite some time and finally figured out how to get clickable workspaces in XMonad with dzen2. You&#8217;ll need 3 things: xmonad dzen2 &#62;= rev. 267 [...]]]></description>
			<content:encoded><![CDATA[<p>While XMonad can be controlled entirely by the keyboard, it can still be a useful feature to change your workspace with a mouse click. I&#8217;ve been looking for this for quite some time and finally figured out how to get clickable workspaces in XMonad with dzen2.</p>
<p>You&#8217;ll need 3 things:</p>
<ul>
<li>xmonad</li>
<li>dzen2 &gt;= rev. 267</li>
<li>xdotool</li>
</ul>
<p>Here are the things you&#8217;ll need to put in your xmonad.hs config:</p>

<div class="wp_syntax"><div class="code"><pre class="haskell" style="font-family:monospace;"><span style="color: #06c; font-weight: bold;">import</span> Data<span style="color: #339933; font-weight: bold;">.</span>List
&nbsp;
<span style="color: #5d478b; font-style: italic;">-- Define amount and names of clickable workspaces.</span>
myWorkspaces    <span style="color: #339933; font-weight: bold;">=</span> clickable <span style="color: #339933; font-weight: bold;">.</span> <span style="color: green;">&#40;</span><span style="font-weight: bold;">map</span> dzenEscape<span style="color: green;">&#41;</span> <span style="color: #339933; font-weight: bold;">$</span> nWorkspaces <span style="color: red;">0</span> <span style="color: green;">&#91;</span><span style="background-color: #3cb371;">&quot;main&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;web&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;chat&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;media&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;graph&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;browse&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;dev&quot;</span><span style="color: #339933; font-weight: bold;">,</span><span style="background-color: #3cb371;">&quot;mail&quot;</span><span style="color: green;">&#93;</span>
    <span style="color: #06c; font-weight: bold;">where</span> nWorkspaces n <span style="color: green;">&#91;</span><span style="color: green;">&#93;</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="font-weight: bold;">map</span> <span style="font-weight: bold;">show</span> <span style="color: green;">&#91;</span><span style="color: red;">1</span> <span style="color: #339933; font-weight: bold;">..</span> n<span style="color: green;">&#93;</span>
          nWorkspaces n l  <span style="color: #339933; font-weight: bold;">=</span> <span style="font-weight: bold;">init</span> l <span style="color: #339933; font-weight: bold;">++</span> <span style="font-weight: bold;">map</span> <span style="font-weight: bold;">show</span> <span style="color: green;">&#91;</span><span style="font-weight: bold;">length</span> l <span style="color: #339933; font-weight: bold;">..</span> n<span style="color: green;">&#93;</span> <span style="color: #339933; font-weight: bold;">++</span> <span style="color: green;">&#91;</span><span style="font-weight: bold;">last</span> l<span style="color: green;">&#93;</span>
          clickable l      <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#91;</span> <span style="background-color: #3cb371;">&quot;^ca(1,xdotool key ctrl+F&quot;</span> <span style="color: #339933; font-weight: bold;">++</span> <span style="font-weight: bold;">show</span> <span style="color: green;">&#40;</span>n<span style="color: green;">&#41;</span> <span style="color: #339933; font-weight: bold;">++</span> <span style="background-color: #3cb371;">&quot;)&quot;</span> <span style="color: #339933; font-weight: bold;">++</span> ws <span style="color: #339933; font-weight: bold;">++</span> <span style="background-color: #3cb371;">&quot;^ca()&quot;</span> <span style="color: #339933; font-weight: bold;">|</span> <span style="color: green;">&#40;</span>i<span style="color: #339933; font-weight: bold;">,</span>ws<span style="color: green;">&#41;</span> &amp;lt;<span style="color: #339933; font-weight: bold;">-</span> <span style="font-weight: bold;">zip</span> <span style="color: green;">&#91;</span>1<span style="color: #339933; font-weight: bold;">..</span><span style="color: green;">&#93;</span> l<span style="color: #339933; font-weight: bold;">,</span> <span style="color: #06c; font-weight: bold;">let</span> n <span style="color: #339933; font-weight: bold;">=</span> i <span style="color: green;">&#93;</span></pre></div></div>

<p>These lines will wrap every workspace name with ^ca, a click action available in dzen2 &gt;= rev. 267. Xdotool is a small application that simulates pressed keys. You can alter the names of the workspaces to your likings. You do, however, have to change the key in the xdotool command to the key you use in XMonad to switch to a specific workspace. In my case, keys &lt;ctrl&gt;+F1 to &lt;ctrl&gt;+F8 are used to switch to workspaces 1 to 8.</p>
<p>Throughout your xmonad.hs you will need to replace all direct references to workspace names because now your first workspace for example, is named ^ca(1,xdotool key ctrl+F1)main^ca(). One way to do this is to use the following references instead:</p>

<div class="wp_syntax"><div class="code"><pre class="haskell" style="font-family:monospace;"><span style="color: #5d478b; font-style: italic;">-- Workspace variables</span>
mainWs      <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">0</span><span style="color: green;">&#41;</span>
webWs       <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">1</span><span style="color: green;">&#41;</span>
chatWs      <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">2</span><span style="color: green;">&#41;</span>
mediaWs     <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">3</span><span style="color: green;">&#41;</span>
graphWs     <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">4</span><span style="color: green;">&#41;</span>
browseWs    <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">5</span><span style="color: green;">&#41;</span>
devWs       <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">6</span><span style="color: green;">&#41;</span>
mailWs      <span style="color: #339933; font-weight: bold;">=</span> <span style="color: green;">&#40;</span>myWorkspaces <span style="color: #339933; font-weight: bold;">!!</span> <span style="color: red;">7</span><span style="color: green;">&#41;</span></pre></div></div>

<p>Remember to use a dzen2 panel, as this click action is a dzen2 specific thing. Also don&#8217;t forget that if you have an urgent hook in your dzen2 pretty printer, you&#8217;ll have to rewrap the workspace with ^ca. You can find my entire confg file <a href="http://www.nepherte.be/files/config/.xmonad/xmonad.hs">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/clickable-workspaces-in-xmonad-with-dzen2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Managing my sessions with CDM</title>
		<link>http://www.nepherte.be/managing-my-sessions-with-cdm/</link>
		<comments>http://www.nepherte.be/managing-my-sessions-with-cdm/#comments</comments>
		<pubDate>Sat, 15 May 2010 18:41:15 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CDM]]></category>
		<category><![CDATA[GDM]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=1267</guid>
		<description><![CDATA[In my pursuit for a fast and functional workstation environment, I am slowly migrating away from GNOME based applications towards less complex and lightweight applications that work well together with XMonad. An obvious candidate for replacement is GDM, the GNOME Display Manager. It&#8217;s basically a graphical login program that launches the correct desktop environment and/or [...]]]></description>
			<content:encoded><![CDATA[<p>In my pursuit for a fast and functional workstation environment, I am slowly migrating away from GNOME based applications towards less complex and lightweight applications that work well together with XMonad. An obvious candidate for replacement is GDM, the GNOME Display Manager. It&#8217;s basically a graphical login program that launches the correct desktop environment and/or window manager. And while GDM works quite well, there were some minor annoyances. For example, <a href="http://projects.gnome.org/gdm/">GDM</a> overwrites the keyboard layout in GNOME, making keyboard configuration in GNOME useless.</p>
<p>I&#8217;ve considered a few alternatives. <a href="http://en.wikipedia.org/wiki/KDE_Display_Manager">KDM</a> is of course out of the question. It doesn&#8217;t even come close to being lightweight and I&#8217;d rather use Windows than pull in any kind of KDE dependency. Viable alternatives are among others SLIM, Qingy and simply using startx to fire up XMonad. I&#8217;ve tryed out <a href="http://slim.berlios.de/">SLIM</a> briefly in the past but wanted something even more simple and from what I&#8217;ve read, SLIM is not begin further developed. Startx is of course as easy as it can possibly get but is in itself featureless and only works well for a single user/session.</p>
<p>In the end I went with <a href="http://cdm.ghost1227.com/X11/">CDM</a>, the Console Display Manager, developed by <a href="http://ghost1227.com/">Ghost1227</a>, a fellow <a href="http://bbs.archlinux.org/profile.php?id=16081">Arch Linux user</a>. It is a minimimalistic, full featured, dialog-based login manager written in pure bash. It supports multiple users/sessions and can start virtually any window manager or desktop environment. I am impressed that it can fire up multiple X sessions of the same user on different ttys.</p>
<p>One step closer to a GNOMEless system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/managing-my-sessions-with-cdm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop, March 2010</title>
		<link>http://www.nepherte.be/desktop-march-2010/</link>
		<comments>http://www.nepherte.be/desktop-march-2010/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 12:52:11 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=1225</guid>
		<description><![CDATA[It is time again to keep you in the loop on my desktop&#8217;s appearance. This month I&#8217;ve switched back to XMonad after using Gnome the last couple of months. Time and time again I&#8217;m surprised by the paradigm of tiling window managers and how functional you can make it. All in all I put together [...]]]></description>
			<content:encoded><![CDATA[<p>It is time again to keep you in the loop on my desktop&#8217;s appearance. This month I&#8217;ve switched back to XMonad after using Gnome the last couple of months. Time and time again I&#8217;m surprised by the paradigm of tiling window managers and how functional you can make it. All in all I put together a quite useful configuration file, among other things fixing the urgency hook that warns me of windows that need my attention and automatically jumping to the workspace where new windows appear. I also discovered the spacing layout modifier which adds some space between each window to distinguish one window from the other.</p>
<p>Since my last XMonad desktop, I&#8217;ve changed my wallpaper to something brighter to lighten things up (I usually don&#8217;t like dark colors or wallpapers) and adapted the text colors to match with everything else:<br />
<a href="http://www.nepherte.be/wp-content/uploads/desktop_march_2010_1.png"><img title="Desktop, March 2010 (1)" src="http://www.nepherte.be/wp-content/uploads/desktop_march_2010_1.png" alt="Desktop, March 2010 (1)" width="300" height="187" /></a> <a href="http://www.nepherte.be/wp-content/uploads/desktop_march_2010_2.png"><img title="Desktop, March 2010 (2)" src="http://www.nepherte.be/wp-content/uploads/desktop_march_2010_2.png" alt="Desktop, March 2010 (2)" width="300" height="187" /></a></p>
<p>System Info:</p>
<ul>
<li>Operating System: Arch Linux</li>
<li>Window Manager: XMonad</li>
<li>GTK: Customized Ubuntu Human (not visible)</li>
<li>Icons: Human Icon Set (not visible)</li>
<li>Wallpaper: Napke</li>
<li>Various: mpd &amp; ncmpcpp, dzen2, conky, emesene, vim, urxvt</li>
</ul>
<p>If there is anything else you would like to know, feel free to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/desktop-march-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Desktop, June 2009</title>
		<link>http://www.nepherte.be/desktop-june-2009/</link>
		<comments>http://www.nepherte.be/desktop-june-2009/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 20:58:16 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=774</guid>
		<description><![CDATA[I didn&#8217;t have much time lately to post anything here. Exams are coming up so most of time goes to studying, as it should be. It will be like that till the end of june so don&#8217;t expect much activity in the next few weeks. But as a sign of me not neglecting my own [...]]]></description>
			<content:encoded><![CDATA[<p>I didn&#8217;t have much time lately to post anything here. Exams are coming up so most of time goes to studying, as it should be. It will be like that till the end of june so don&#8217;t expect much activity in the next few weeks. But as a sign of me not neglecting my own blog, I&#8217;ll post my new desktop.</p>
<p>I&#8217;ve completely moved to the tiling window manager XMonad now to fully profit from my new 24&#8243; monitor. It took me a while to get used to a tiling window manager but now that I got the hang of it, it&#8217;s not likely I&#8217;ll ever go back a regular floating desktop.</p>
<p><a href="http://www.nepherte.be/wp-content/uploads/desktop-nepherte.png"><img src="http://www.nepherte.be/wp-content/uploads/desktop-nepherte-300x187.png" alt="Desktop, June 2009 (1)" title="Desktop, June 2009 (1)" width="300" height="187" class="alignnone size-medium wp-image-776" /></a><a href="http://www.nepherte.be/wp-content/uploads/desktop-nepherte2.png"><img src="http://www.nepherte.be/wp-content/uploads/desktop-nepherte2-300x187.png" alt="Desktop, June 2009 (2)" title="Desktop, June 2009 (2)" width="300" height="187" class="alignnone size-medium wp-image-780" /></a></p>
<p>What you are seeing:</p>
<ul>
<li>Operating System: Arch Linux</li>
<li>Window Manager: XMonad</li>
<li>GTK: Customized Ubunt Human</li>
<li>Icons: Human Icon set</li>
<li>Wallpaper: Spy vs. Spy (deviantart)</li>
<li>Various: Trayer for docking icons, Conky for displaying statistics, mpd song info and date/time, Irssi, MPlayer, ncmpc++</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/desktop-june-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMonad and Gnome: The best of 2 worlds</title>
		<link>http://www.nepherte.be/xmonad-and-gnome-the-best-of-2-worlds/</link>
		<comments>http://www.nepherte.be/xmonad-and-gnome-the-best-of-2-worlds/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 21:44:17 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Awesome]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[DWM]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Tiling Window Manager]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=473</guid>
		<description><![CDATA[To tile or not to tile, that&#8217;s the question. GNOME has always fulfilled my needs of a desktop environment. Nothing has ever been able to lure me away from GNOME. Its screensaver, its network manager, its power management and GTK applications, it all perfectly fits together. On the other hand, maximizing the usage of the [...]]]></description>
			<content:encoded><![CDATA[<p>To tile or not to tile, that&#8217;s the question. <a href="http://www.gnome.org/">GNOME</a> has always fulfilled my needs of a desktop environment. Nothing has ever been able to lure me away from GNOME. Its screensaver, its network manager, its power management and GTK applications, it all perfectly fits together. On the other hand, maximizing the usage of the monitor&#8217;s space is a great and appealing idea that surely leads to more productivity; no more window resizing , no more window overlap, no more empty gaps on the desktop. A superb idea indeed. Ultimately it was something I really had to try out. So I did.</p>
<p><a href="http://www.nepherte.be/wp-content/uploads/2008/12/desktop_may_2008_4.png"></a><a href="http://www.nepherte.be/wp-content/uploads/2009/03/desktop-1-march-2008.png"><img class="alignnone size-medium wp-image-512" title="My Gnome Desktop March 2008" src="http://www.nepherte.be/wp-content/uploads/2009/03/desktop-1-march-2008-300x187.png" alt="Gnome Desktop March 2008" width="300" height="187" /></a><a href="http://www.nepherte.be/wp-content/uploads/2008/12/desktop_may_2008_1.png"><img class="alignnone size-medium wp-image-100" title="My Gnome Desktop May 2008" src="http://www.nepherte.be/wp-content/uploads/2008/12/desktop_may_2008_1-300x187.png" alt="Gnome Desktop May 2008" width="300" height="187" /></a></p>
<p>This leaves me with another question: What tiling window manager to choose? I&#8217;ve heared about most of them already while browsing the Arch Linux forum and started with <a href="http://www.suckless.org/dwm/">dwm</a>, known as the easiest tiling window manager to configure. Indeed, the configuration is fairly easy but it doesn&#8217;t resemble to the simplicity of GNOME or KDE  at all. If you don&#8217;t read about it first, you start dwm and you&#8217;re left with nothing but an empty screen without even knowing how to run an application. While it is supposed to be easy, I still had some unresolved problems with naming my tags/workspaces and shifting windows to it. Though my incompetence is probably to blame, the developers&#8217; unwillingness to document their work didn&#8217;t really help me either so I abandoned dwm. The second in line to try was <a href="http://awesome.naquadah.org/">Awesome</a>. It&#8217;s very popular and probably the most feature rich one. Configuration is done in the programming language lua. Oddly enough I had a lot more success configuring it than dwm. A notorious downside of Awesome is its ever changing configuration syntax. While this is supposedly going to improve now lua is introduced, I&#8217;m not willing to put it to the test.</p>
<p><a href="http://freduardo.files.wordpress.com/2008/11/awesomeblue.png"><img class="alignnone" title="Freduaordos Awesome Desktop" src="http://freduardo.files.wordpress.com/2008/11/awesomeblue.png" alt="" width="300" height="187" /></a><a href="http://arch.kimag.es/share/74389413.png"><img class="alignnone" title="Unknown DWM Desktop Screenshot" src="http://arch.kimag.es/share/74389413.png" alt="" width="300" height="187" /></a></p>
<p>Opposed to the previous two, my experience with <a href="http://xmonad.org/">XMonad</a> is a success story all the way. I believe XMonad outranks the others easily. Configuration is done in Haskell. While it&#8217;s perhaps not an easy way to configure things, it  allows  great flexibility. The developers have extensively documented each feature, illustrate a lot with simple examples and created a great faq that answers the  most important questions that come to mind. XMonad runs very smoothly and on top of everything, it can be easily integrated with every popular desktop environment. That last feature is a huge bonus. It simply replaces metacity (the window manager of GNOME) with XMonad. While this can be done with the other tiling window managers too, XMonad integrates very nicely in GNOME and handles the communcation between the two very well. I get the best of both worlds with no downsides. Well, there&#8217;s adownside, only not for me. It is required to install the +/- 100 MB Haskell compiler. Luckily for me, I need Haskell for my university courses.</p>
<p><a href="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_11.png"><img class="alignnone size-medium wp-image-517" title="My XMonad Desktop (1) March 2009" src="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_11-300x187.png" alt="XMonad Desktop (1) March 2009" width="300" height="187" /></a><a href="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_21.png"><img class="alignnone size-medium wp-image-518" title="My XMonad Desktop (2) March 2009" src="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_21-300x187.png" alt="XMonad Desktop (2) March 2009" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/xmonad-and-gnome-the-best-of-2-worlds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Desktop March 2009</title>
		<link>http://www.nepherte.be/desktop-march-2009/</link>
		<comments>http://www.nepherte.be/desktop-march-2009/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 19:47:05 +0000</pubDate>
		<dc:creator>Nepherte</dc:creator>
				<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Arch Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Screenshot]]></category>
		<category><![CDATA[XMonad]]></category>

		<guid isPermaLink="false">http://www.nepherte.be/?p=438</guid>
		<description><![CDATA[It&#8217;s been a while again since my latest desktop screenshot. I usually don&#8217;t change much and the changes I make are mostly minor ones. My new desktop is a completely new one though. Operating System: Arch Linux GTK: Customized Ubuntu Human Window Manager: XMonad Icons: Ubuntu Human Icon Set Wallpaper: Rey Del Mundo For starters, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while again since <a title="Desktop October, 2008" href="http://www.nepherte.be/desktop-october-2008/">my latest desktop screenshot</a>. I usually don&#8217;t change much and the changes I make are mostly minor ones. My new desktop is a completely new one though.</p>
<ul>
<li>Operating System: Arch Linux</li>
<li>GTK: Customized Ubuntu Human</li>
<li>Window Manager: XMonad</li>
<li>Icons: Ubuntu Human Icon Set</li>
<li>Wallpaper: Rey Del Mundo</li>
</ul>
<p><a href="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_1.png"><img class="alignnone" title="Desktop March 2009 Clean" src="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_1.png" alt="Desktop March 2009 Clean" width="300" height="240" /></a><a href="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_2.png"><img class="alignnone" title="Desktop March 2009 Dirty" src="http://www.nepherte.be/wp-content/uploads/2009/03/desktop_march_2009_2-300x240.png" alt="Desktop March 2009 Dirty" width="300" height="240" /></a></p>
<p>For starters, I fell in love with <a title="InterfaceLift: Rey Del Mundo" href="http://interfacelift.com/wallpaper_beta/email/1059/rey_del_mundo.html">this</a> wallpaper. I  got rid of metacity and finally switched to something moreproductive:  XMonad. Give me a hallelluja for tiling window managers. The only thing I&#8217;m still not happy with, are the font colors. I still have to find a matching color palette. Suggestions are always welcome. For those interested in my XMonad configuration file, feel free to ask. I&#8217;ll probably post it in upcoming article on XMonad as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nepherte.be/desktop-march-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
