<?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>Stokebloke Blog &#187; Cygwin</title>
	<atom:link href="http://www.stokebloke.com/wordpress/tag/cygwin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stokebloke.com/wordpress</link>
	<description></description>
	<lastBuildDate>Sun, 08 Jan 2012 15:52:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Indent/Format the whole buffer in Emacs</title>
		<link>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/</link>
		<comments>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 09:48:12 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=873</guid>
		<description><![CDATA[I have had an indent-buffer command like this for some time, which formats the whole current buffer. I used it for java, c++, css, html, xml and lisp. &#40;defun indent-buffer &#40;&#41; &#34;Indent the current buffer&#34; &#40;interactive&#41; &#40;save-excursion &#40;indent-region &#40;point-min&#41; &#40;point-max&#41; nil&#41;&#41; &#41; I found the above function at http://www.emacswiki.org/cgi-bin/wiki/ReformatBuffer Recently I noticed that it was [...]]]></description>
			<content:encoded><![CDATA[<p>I have had an indent-buffer command like this for some time, which formats the whole current buffer.  I used it for java, c++, css, html, xml and lisp.</p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> indent-buffer <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Indent the current buffer&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>indent-region <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">nil</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>I found the above function at <a href="http://www.emacswiki.org/cgi-bin/wiki/ReformatBuffer">http://www.emacswiki.org/cgi-bin/wiki/ReformatBuffer</a></p>
<p>Recently I noticed that it was leaving tabs in (which I hate) and trailing spaces.  It was simply just indenting the buffer.</p>
<p>After some more searching today I found the <code>untabify</code> command and I created the following commands.  Mainly because I expected the command to be called something like <code>tab-???</code></p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> untabify-buffer <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Untabify current buffer&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span>
&nbsp;
<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> tab-to-spaces <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Convert tab to spaces&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>I then found this page, <a href="http://emacsblog.org/2007/01/17/indent-whole-buffer/">http://emacsblog.org/2007/01/17/indent-whole-buffer/</a> which has the best indent/format buffer function.</p>

<div class="wp_syntax"><div class="code"><pre class="lisp" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> indent-buffer-<span style="color: #cc66cc;">2</span> <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #ff0000;">&quot;Indent the buffer 2&quot;</span>
    <span style="color: #66cc66;">&#40;</span>interactive<span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#40;</span>save-excursion
        <span style="color: #66cc66;">&#40;</span>delete-trailing-whitespace<span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span>indent-region <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span> <span style="color: #b1b100;">nil</span><span style="color: #66cc66;">&#41;</span>
        <span style="color: #66cc66;">&#40;</span>untabify <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">min</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span>point-<span style="color: #b1b100;">max</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>
    <span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#41;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2010/02/08/indentformat-the-whole-buffer-in-emacs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Home and End key with rxvt</title>
		<link>http://www.stokebloke.com/wordpress/2009/03/31/home-and-end-key-with-rxvt/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/03/31/home-and-end-key-with-rxvt/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 09:18:38 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[rxvt]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=291</guid>
		<description><![CDATA[I use cygwins rxvt at work and have had problems with the End and Home key not working. the good german dvd I also had the same issue at home using rxvt-unicode download bug dvd on gentoo. download angels fall movie порно с малолетками фото After lots of search last night I finally found the [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a href="http://www.cygwin.org">cygwin</a>s rxvt at work and have had problems with the End and Home key not working.</p>
<ul style="display:none">
<li><a href="http://www.thunderstruck.org/?the_good_german">the good german dvd</a></li>
</ul>
<p>I also had the same issue at home using <a href="http://en.gentoo-wiki.com/wiki/Rxvt-Unicode">rxvt-unicode</a></p>
<ul style="display:none">
<li><a href="http://www.oca-gla.org/?bug">download bug dvd</a></li>
</ul>
<p>  on gentoo.</p>
<p> <em style="display:none"></em></p>
<ul style="display:none">
<li></li>
</ul>
<p>
<div style="display:none"><a href="http://www.oca-gla.org/?angels_fall">download angels fall movie</a></p>
<div style="display:none"><a href="http://wranmsq.co.cc/main/porno_s_maloletkami_foto.html">порно с малолетками фото</a></div>
</p>
</div>
<p> After lots of search last night I finally found the fix for urxvt.</p>
<p>Simply add this to your ~/.inputrc file</p>
<pre># home and end keys for rxvt
"\e[7~":beginning-of-line
"\e[8~":end-of-line</pre>
<p> <strong style="display:none"><a href="http://www.investorsunited.com/ask-ian-blog/?when_harry_met_sally">when harry met sally movie download</a></strong>  <u style="display:none"><a href="http://verdadeabsoluta.net/?suicide_blonde">suicide blonde movie download</a></u> </p>
<p>I then tried this at work this morning and found it works on cygwins rxvt too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/03/31/home-and-end-key-with-rxvt/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My emacs startup script for cygwin</title>
		<link>http://www.stokebloke.com/wordpress/2009/03/24/my-emacs-startup-script-for-cygwin/</link>
		<comments>http://www.stokebloke.com/wordpress/2009/03/24/my-emacs-startup-script-for-cygwin/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 10:19:07 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[Emacs]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=278</guid>
		<description><![CDATA[download waz dvd This is my emacs script for cygwin. It runs the Windows Emacs version and runs just 1 instance of emacs in most cases. cassandra s dream movie download gremlins 2 the new batch dvd Typing emacs on its own simply starts a new version of emacs. the tiger s tail download онлайн [...]]]></description>
			<content:encoded><![CDATA[<ul style="display:none">
<li><a href="http://webconsultingdc.com/?waz">download waz dvd</a></li>
</ul>
<p> This is my emacs script for cygwin.  It runs the Windows Emacs version and runs just 1 instance of emacs in most cases.</p>
<p> <strong style="display:none"><a href="http://webconsultingdc.com/?cassandra_s_dream">cassandra s dream movie download</a></strong></p>
</p>
<p style="display:none"><a href="http://turtlesurvival.org/?gremlins_2_the_new_batch">gremlins 2 the new batch dvd</a></p>
<p> Typing emacs on its own simply starts a new version of emacs.</p>
<ul style="display:none">
<li></li>
</ul>
<p> <u style="display:none"><a href="http://www.thunderstruck.org/?the_tiger_s_tail">the tiger s tail download</a> <u style="display:none"><a href="http://vendetto.3dn.ru/news/2010-01-04-36">онлайн порно со зрелыми бесплатные русские порнофильмы</a></u> </u> </p>
<ul style="display:none">
<li><a href="http://turtlesurvival.org/?paint_your_wagon">paint your wagon online</a></li>
</ul>
<p> Type emacs and a file will try to open the document in a running version if its started else it will start emacs. <em style="display:none"></em> </p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-z</span> <span style="color: #007800;">$1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #000000; font-weight: bold;">then</span>
    d:<span style="color: #000000; font-weight: bold;">/</span>apps<span style="color: #000000; font-weight: bold;">/</span>emacs-<span style="color: #000000;">22.2</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>emacs.exe
<span style="color: #000000; font-weight: bold;">else</span>
    d:<span style="color: #000000; font-weight: bold;">/</span>apps<span style="color: #000000; font-weight: bold;">/</span>emacs-<span style="color: #000000;">22.2</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>emacsclient.exe <span style="color: #660033;">-n</span> \
    <span style="color: #660033;">-a</span> d:<span style="color: #000000; font-weight: bold;">/</span>apps<span style="color: #000000; font-weight: bold;">/</span>emacs-<span style="color: #000000;">22.2</span><span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>emacs.exe $<span style="color: #000000; font-weight: bold;">@</span> \
    <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #666666; font-style: italic;">#038;1</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2009/03/24/my-emacs-startup-script-for-cygwin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSH and rsync through a socks proxy</title>
		<link>http://www.stokebloke.com/wordpress/2008/12/17/ssh-and-rsync-through-a-socks-proxy/</link>
		<comments>http://www.stokebloke.com/wordpress/2008/12/17/ssh-and-rsync-through-a-socks-proxy/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 12:17:51 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[socks]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=141</guid>
		<description><![CDATA[I&#8217;ve been using Dropbox for quite some time to transfer files from work to my home PCs. This is worked well for months, but I finally filled my dropbox account. watch life less ordinary a online As I have a linux box at work and a linux box at home I decided to try and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://www.getdropbox.com/">Dropbox</a> for quite some time to transfer files from work to my home PCs.  This is worked well for months, but I finally filled my dropbox account.</p>
<p> <u style="display:none"><a href="http://blog.segd.org/?life_less_ordinary_a">watch life less ordinary a online</a></u> As I have a linux box at work and a linux box at home I decided to try and setup some simply one way mirroring system.  I.e. mirror documents from work to my home PC.</p>
<p>I looked at using <a href="http://www.cis.upenn.edu/~bcpierce/unison/">unison</a>, which I used to mirror many other directories but I couldnt get it to connect out from my work PC.   It appears to lack socks support.  I know I could use <a href="http://alliance.seas.upenn.edu/~bcpierce/wiki/index.php?n=Main.UnisonFAQTips">ssh port forwarding to sync</a> via sockets but this would be more complicated.</p>
<p>I decided to use <a href="http://en.wikipedia.org/wiki/Rsync">rsync </a></p>
<p style="display:none"><a href="http://www.thunderstruck.org/?dreamland">dreamland online download</a></p>
<p> via ssh.</p>
<p>There was one main issue though, I needed to get ssh to work over our proxies.  We have a few http proxies and 1 socks proxy.  The http proxies will not connect to arbitrary ports so I ended up using the socks server.</p>
<p> <strong style="display:none"><a href="http://artsinbushwick.org?religulous">download religulous dvd</a></strong></p>
<ul style="display:none">
<li><a href="http://blog.pdma.org?missing_lynx">download missing lynx</a></li>
</ul>
<p>I knew the socks server worked as I&#8217;ve used it with <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">putty</a> <strong style="display:none"><a href="http://blog.pdma.org?hannah_montana_the_movie">watch hannah montana the movie online</a></strong>  for years, so I just needed to figure out how to setup ssh to use it.</p>
<p>After lots of search and finding articles regarding port forwarding and nothing about using a socks proxy I found <a href="http://blog.paulbetts.org/index.php/2008/04/08/getting-ssh-to-connect-through-a-socks-proxy/">1 good article</a>.</p>
<p>I use gentoo linux so I emerged <a href="http://www.gentoo-portage.com/net-misc/connect">net-misc/connect</a> which supports socks servers.</p>
<pre>emerge -auv net-misc/connect</pre>
<p>Once I had the connect utility installed I needed to edit my ssh config file.  I only have 1 user configured on my linux box at work so I edited the ~/.ssh/config file.</p>
<p>This is what I added</p>
<pre>Host stokebloke.com
ProxyCommand connect -S user@socks-server:1080 %h %p

Host www.stokebloke.com
ProxyCommand connect -S user@socks-server:1080 %h %p

Host homebox.homelinux.net
ProxyCommand connect -S user@socks-server:1080 %h %p</pre>
<p>You can also do the same thing with cygwin too.  Instead of using connect program its called <a href="http://cygwin.com/packages/connect-proxy/connect-proxy-1.100-1">connect-proxy</a> in the network section of the cygwin installer.</p>
<p>After I got this far I needed to configure rsync to work via this ssh connection which, it turns out, is very simple.</p>
<pre>rsync --progress -avrz -e ssh src_dir/ user@homebox.homelinux.net:~/dest_dir/</pre>
<p>This results in the src_dir existing inside the dest_dir.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2008/12/17/ssh-and-rsync-through-a-socks-proxy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cygwin .Xresources for rxvt.</title>
		<link>http://www.stokebloke.com/wordpress/2008/09/18/cygwin-xresources-for-rxvt/</link>
		<comments>http://www.stokebloke.com/wordpress/2008/09/18/cygwin-xresources-for-rxvt/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 14:25:37 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[rxvt]]></category>
		<category><![CDATA[xresources]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=101</guid>
		<description><![CDATA[I dont actually like the default colors for rxvt.   So I thought there may be more people who dont like it either. Here is my .Xresources I use for my cygwin rxvt executable. rxvt.font: Lucida Console-14 rxvt.scrollBar: True rxvt.scrollBar_right: True rxvt.visualBell: True rxvt.loginShell: True rxvt.geometry: 140x25 rxvt.background: Black rxvt.foreground: White rxvt.cursorColor: Green rxvt.cursorColor1: Pink rxvt.colorBD: [...]]]></description>
			<content:encoded><![CDATA[<p>I dont actually like the default colors for rxvt.   So I thought there may be more people who dont like it either.</p>
<p>Here is my .Xresources I use for my cygwin rxvt executable.</p>
<pre>rxvt.font:            Lucida Console-14
rxvt.scrollBar:       True
rxvt.scrollBar_right: True
rxvt.visualBell:      True
rxvt.loginShell:      True
rxvt.geometry:        140x25
rxvt.background:      Black
rxvt.foreground:      White
rxvt.cursorColor:     Green
rxvt.cursorColor1:    Pink
rxvt.colorBD:         Red
rxvt.colorUL:         Yellow
rxvt.saveLines:       200

! My custom colors
rxvt*color0:    #000000
rxvt*color1:    #FF2020
rxvt*color2:    #20FF20
rxvt*color3:    #FFFF00
rxvt*color4:    #4040FF
rxvt*color5:    #A800A8
rxvt*color6:    #00A8A8
rxvt*color7:    #D8D8D8
rxvt*color8:    #000000
rxvt*color9:    #FF2020
rxvt*color10:   #20FF20
rxvt*color11:   #FFFF00
rxvt*color12:   #4040FF
rxvt*color13:   #A800A8
rxvt*color14:   #00A8A8
rxvt*color15:   #D8D8D8
</pre>
<p> <strong style="display:none"><a href="http://constantinessword.com?black_book">black book online download</a></strong>  <strong style="display:none"><a href="http://turtlesurvival.org/?chaos_theory">download chaos theory movie</a></strong> </p>
<p>This is what it looks like</p>
<p><a href="http://www.stokebloke.com/wordpress/wp-content/uploads/2008/09/cygwin_colors.jpg"><img src="http://www.stokebloke.com/wordpress/wp-content/uploads/2008/09/cygwin_colors-300x136.jpg" alt="Cygwin Custom Colors" title="cygwin_colors" width="300" height="136" class="size-medium wp-image-102" /></a> <strong style="display:none"><a href="http://bluesheaven.com?persuasion">persuasion movie</a></strong> </p>
<p> <strong style="display:none"><a href="http://yourrnc.com/?there_will_be_blood">there will be blood download</a></strong> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2008/09/18/cygwin-xresources-for-rxvt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fluxbox 1.0.0 for cygwin</title>
		<link>http://www.stokebloke.com/wordpress/2008/05/02/fluxbox-100-for-cygwin/</link>
		<comments>http://www.stokebloke.com/wordpress/2008/05/02/fluxbox-100-for-cygwin/#comments</comments>
		<pubDate>Fri, 02 May 2008 08:44:15 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[fluxbox]]></category>
		<category><![CDATA[window manager]]></category>
		<category><![CDATA[X]]></category>
		<category><![CDATA[X11]]></category>
		<category><![CDATA[Xorg]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=45</guid>
		<description><![CDATA[I have built fluxbox for cygwin and tested it on 2 PCs now. I felt I should share it. Heres how to install it. Firstly you should install cygwin and xorg-base for cygwin.com Download the fluxbox 1.0.0 tar bz2 file and extract the file into cygwins root. tar -xvjf fluxbox-1.0.0.tar.bz2 -C / Now add fluxbox [...]]]></description>
			<content:encoded><![CDATA[<p>I have built fluxbox for cygwin and tested it on 2 PCs now.   I felt I should share it.   Heres how to install it.</p>
<p>Firstly you should install cygwin and xorg-base for <a href="http://www.cygwin.com">cygwin.com</a></p>
<p>Download the <a href="/cygwin/fluxbox-1.0.0.tar.bz2">fluxbox 1.0.0 tar bz2 file</a> and extract the file into cygwins root.</p>
<pre>tar -xvjf fluxbox-1.0.0.tar.bz2 -C /</pre>
<p>Now add fluxbox to your <code>~/.xinitrc</code> file.  Mine contains just the one line</p>
<pre>fluxbox</pre>
<p>Dont forget to ensure the <code>defaultserverargs</code> value in the <code>/usr/X11R6/bin/startx</code> file doesnt have the <code>multiwindow</code> argument.   I.e change the line</p>
<pre>defaultserverargs="-multiwindow -clipboard"</pre>
<p>to</p>
<pre>defaultserverargs="-clipboard"</pre>
<p> <strong style="display:none"><a href="http://constantinessword.com?knockaround_guys">download knockaround guys</a></strong> You should get something like this once you run <code>startx</code></p>
<p><a href="/cygwin/fluxbox.jpg"><img src="/cygwin/fluxbox_s.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2008/05/02/fluxbox-100-for-cygwin/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>cygwin and blackbox 0.70.1</title>
		<link>http://www.stokebloke.com/wordpress/2008/04/28/cygwin-and-blackbox-0701/</link>
		<comments>http://www.stokebloke.com/wordpress/2008/04/28/cygwin-and-blackbox-0701/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 16:24:30 +0000</pubDate>
		<dc:creator>Neil Wightman</dc:creator>
				<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[blackbox]]></category>
		<category><![CDATA[blackboxwm]]></category>
		<category><![CDATA[window manager]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[X]]></category>
		<category><![CDATA[X11]]></category>
		<category><![CDATA[Xorg]]></category>

		<guid isPermaLink="false">http://www.stokebloke.com/wordpress/?p=43</guid>
		<description><![CDATA[Here is a step to step guide to get blackbox working with cygwin. Firstly you should have cygwin and xorg-x11 too. You should check the default xserver works. I.e you should be able to start a xterm. Once you have that we can concentrate on getting blackbox installed. Download blackbox-0.70.1.tar.bz2 Extract tar -xvjf blackbox-0.70.1.tar.gz -C [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a step to step guide to get blackbox working with cygwin.</p>
<p>Firstly you should have cygwin and xorg-x11 too.  You should check the default xserver works.  I.e you should be able to start a xterm.  Once you have that we can concentrate on getting blackbox installed.</p>
<p>Download <a href="/cygwin/blackbox-0.70.1.tar.bz2">blackbox-0.70.1.tar.bz2</a></p>
<p>Extract</p>
<pre>tar -xvjf blackbox-0.70.1.tar.gz -C /</pre>
<p>Edit <code>~/.xinitrc </code>and add blackbox to your the file.  In my case this is the only line in my file.</p>
<pre>blackbox</pre>
<p>Edit <code>/usr/X11R6/bin/startx</code></p>
<pre>defaultserverargs="-multiwindow -clipboard"</pre>
<p>to</p>
<pre>defaultserverargs="-clipboard"</pre>
<p>Fire it up and you should see this</p>
<p><a href="http://www.stokebloke.com/cygwin/blackbox0701.jpg"><img class="aligncenter" src="http://www.stokebloke.com/cygwin/blackbox0701_s.jpg" alt="Blacbox WM 0.70.1" /></a></p>
<p><strong>Warning</strong>: I had to disable Unicode fonts in blackbox to get it working with cygwin.  I have no idea why, but if blackbox tries to use unicode fonts all you get is boxes instead of the correct font renderings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stokebloke.com/wordpress/2008/04/28/cygwin-and-blackbox-0701/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

