<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://crunchbang.org/forums/extern.php?action=feed&amp;type=rss&amp;tid=11796" rel="self" type="application/rss+xml" />
		<title><![CDATA[CrunchBang Linux Forums / Big Ol' Awesome Config Thread!]]></title>
		<link>http://crunchbang.org/forums/viewtopic.php?id=11796</link>
		<description><![CDATA[The most recent posts in Big Ol' Awesome Config Thread!.]]></description>
		<lastBuildDate>Tue, 26 Feb 2013 04:28:27 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=292254#p292254</link>
			<description><![CDATA[<p>Hi all,</p><p>I&#039;m trying to bind a key to move and resize floating windows to specific positions and an absolute height and width.&#160; I&#039;ve tried the code below, but it doesn&#039;t work -- anyone have any ideas how to get it to work?</p><p>Thanks!</p><div class="codebox"><pre><code>clientkeys = awful.util.table.join(
    awful.key({ modkey,           }, &quot;u&quot;,
        function (c)
            c:geometry( {x = 50, y = 50, width = 200, height = 600} )
        end)
)</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (BobTheZealot)]]></author>
			<pubDate>Tue, 26 Feb 2013 04:28:27 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=292254#p292254</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=286991#p286991</link>
			<description><![CDATA[<p>Thanks everyone! you guys are aweeeesome! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/big_smile.png" alt="big_smile" /> It&#039;s working with &quot;libreoffice-writer&quot;, the problem was the space between libreoffice and -writer.&#160; This is a great forum, so much love.</p>]]></description>
			<author><![CDATA[dummy@example.com (Lula)]]></author>
			<pubDate>Fri, 01 Feb 2013 20:29:24 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=286991#p286991</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=286968#p286968</link>
			<description><![CDATA[<p>@lula</p><p>When I use xprop I get:</p><div class="codebox"><pre><code>WM_CLASS(STRING) = &quot;VCLSalFrame&quot;, &quot;libreoffice-writer&quot;</code></pre></div><p>If the WM_CLASS(STRING) is what&#039;s needed in Awesome - and as I recall it is - you&#039;ll need to take out the space between libreoffice and -writer; as well as the space gutterslob is talking about.</p>]]></description>
			<author><![CDATA[dummy@example.com (PackRat)]]></author>
			<pubDate>Fri, 01 Feb 2013 18:59:17 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=286968#p286968</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=286962#p286962</link>
			<description><![CDATA[<p>If you look closely (2nd last line), you&#039;ll notice a space between the &quot; and the libreoffice launch command. Could that be the reason?<br />Sorry, I&#039;ve got no experience with libreoffice, and I haven&#039;t used awesome in a long time, so I can&#039;t make any further guesses.</p>]]></description>
			<author><![CDATA[dummy@example.com (gutterslob)]]></author>
			<pubDate>Fri, 01 Feb 2013 18:20:51 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=286962#p286962</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=286907#p286907</link>
			<description><![CDATA[<p>Whenever I have had a problem&#160; with opening an app on a specific window it turned out to be the name of the class was wrong - just a small thing like a capital L instead of a small l&#160; can mean all the difference.</p>]]></description>
			<author><![CDATA[dummy@example.com (ChickenPie4Tea)]]></author>
			<pubDate>Fri, 01 Feb 2013 08:05:18 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=286907#p286907</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=286232#p286232</link>
			<description><![CDATA[<p>Hey! i have a problem, and it seems like you guys are good at awesome! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/smile.png" alt="smile" /> I am trying to set Libreoffice to open in a specific tag but it aint working. Can someone help me? Thanks! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/big_smile.png" alt="big_smile" /> </p><div class="codebox"><pre class="vscroll"><code>-- {{{ Rules
awful.rules.rules = {
    -- clients will match this rule.
    { rule = { },
      properties = { border_width = beautiful.border_width,
                     border_color = beautiful.border_normal,
                     focus = true,
                     keys = clientkeys,
                     buttons = clientbuttons } },
                     
    { rule = { class = &quot;MPlayer&quot; },
      properties = { floating = true } },
    { rule = { class = &quot;pinentry&quot; },
      properties = { floating = true } },
    { rule = { class = &quot;gimp&quot; },
      properties = { floating = true } },
     
     { rule = { class = &quot;Vlc&quot;},
            properties = { tag = tags[1][4] } },
     { rule = { class = &quot;Google-chrome&quot; },
            properties = { tag = tags[1][2] } },
     { rule = { class = &quot;Empathy&quot; },
            properties = { tag = tags[1][2] } },
     { rule = { class = &quot;Spotify&quot; },
            properties = { tag = tags[1][4] } },
     { rule = { class = &quot;Geany&quot; },
            properties = { tag = tags[1][5] } },
     { rule = { class = &quot;Transmission&quot; },
            properties = { tag = tags[1][5] } },
     { rule = { class = &quot;Evince&quot; },
            properties = { tag = tags[1][3] } },
     { rule = { class = &quot;X-terminal-emulator&quot; },
            properties = { tag = tags[1][5] } },
     { rule = { class = &quot;Gimp&quot; },
            properties = { tag = tags[1][3] } },
     { rule = { class = &quot;Catfish&quot; },
            properties = { tag = tags[1][5] } },
     { rule = { class = &quot; libreoffice -writer&quot; },
            properties = { tag = tags[1][3] } },                              
                   </code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Lula)]]></author>
			<pubDate>Sun, 27 Jan 2013 21:50:34 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=286232#p286232</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=284719#p284719</link>
			<description><![CDATA[<p>Did someone manage to compile awesome 3.5? I get always the error glib-unix.h missing.</p>]]></description>
			<author><![CDATA[dummy@example.com (yt)]]></author>
			<pubDate>Mon, 21 Jan 2013 10:00:18 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=284719#p284719</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=283713#p283713</link>
			<description><![CDATA[<p>Hey guys.<br />I just installed awesome-wm and I think something&#039;s not right.<br />After a fresh install when I launch awesome, I right click and click on manual or config buttons but none of them work; nothing opens.<br />Also, I tried using someone else&#039;s config but it did not detect any configs in the ~/.config/awesome folder so I tried replacing the config in /etc/xdg/awesome.<br />After I did that and restarted awesome-wm it showed an error and brought me back to login screen.</p><p>Did this happen to anyone ?</p><p>What do I do ?<br />Thanks.</p><p>@M.I.H.H : </p><p>Type in terminal uname -r<br />The last word you see ( eg. amd64 or i686 ) note it down.<br />Go to ----&gt; <a href="http://packages.debian.org/wheezy/awesome">http://packages.debian.org/wheezy/awesome</a><br />Scroll to bottom , you&#039;ll see kind of a table. Click on the word that corresponds to the output of uname -r<br />A .deb file will be downloaded, install it.</p>]]></description>
			<author><![CDATA[dummy@example.com (rohan166)]]></author>
			<pubDate>Tue, 15 Jan 2013 15:45:14 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=283713#p283713</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=270315#p270315</link>
			<description><![CDATA[<div class="quotebox"><cite>Istvan wrote:</cite><blockquote><div><div class="quotebox"><cite>m5 wrote:</cite><blockquote><div><p>^ just type :</p><div class="codebox"><pre><code>sudo apt-get install awesome</code></pre></div><p>in terminal.</p></div></blockquote></div><p>Perhaps also this :<br />sudo apt-get install awesome-extra</p></div></blockquote></div><br /><p>when i typing: sudo apt-get install awesome<br />and then<br />Reading package lists... Done<br />Building dependency tree<br />Reading state information... Done<br />E: Unabel to locate package awesome</p><p>so, what should i do ?</p>]]></description>
			<author><![CDATA[dummy@example.com (M.I.H.H)]]></author>
			<pubDate>Thu, 08 Nov 2012 10:50:39 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=270315#p270315</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=269975#p269975</link>
			<description><![CDATA[<div class="quotebox"><cite>m5 wrote:</cite><blockquote><div><p>^ just type :</p><div class="codebox"><pre><code>sudo apt-get install awesome</code></pre></div><p>in terminal.</p></div></blockquote></div><p>Perhaps also this :<br />sudo apt-get install awesome-extra</p>]]></description>
			<author><![CDATA[dummy@example.com (Istvan)]]></author>
			<pubDate>Wed, 07 Nov 2012 13:06:56 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=269975#p269975</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=269970#p269970</link>
			<description><![CDATA[<p>^ just type :</p><div class="codebox"><pre><code>sudo apt-get install awesome</code></pre></div><p>in terminal.</p>]]></description>
			<author><![CDATA[dummy@example.com (m5)]]></author>
			<pubDate>Wed, 07 Nov 2012 12:41:07 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=269970#p269970</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=269952#p269952</link>
			<description><![CDATA[<p>how to install awesomeWM on Crunchbang.<br />should i must put some source URL in source.list ?</p>]]></description>
			<author><![CDATA[dummy@example.com (M.I.H.H)]]></author>
			<pubDate>Wed, 07 Nov 2012 10:14:46 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=269952#p269952</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=228093#p228093</link>
			<description><![CDATA[<div class="quotebox"><cite>ley_lines wrote:</cite><blockquote><div><p>Im using conky in my awesome setup and im able to&#160; close conkywith my alt f4 just like any other window. What do I need to do to make it unclosable? And sorry if this is wrong topic didnt know if it was an awesome or conky problem</p></div></blockquote></div><br /><p>Haven&#039;t used conky in a long time but I believe &#039;own_window = no&#039; should get you to your happy place.</p>]]></description>
			<author><![CDATA[dummy@example.com (doug piston)]]></author>
			<pubDate>Tue, 05 Jun 2012 03:50:05 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=228093#p228093</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=223216#p223216</link>
			<description><![CDATA[<div class="quotebox"><cite>yamba wrote:</cite><blockquote><div><p>scott@crunchbang:~$ volumeicon<br />ALSA lib pulse.c:243:(pulse_connect) PulseAudio: Unable to connect: Connection refused</p><p>volumeicon: alsa_backend.c:88: asound_get_volume: Assertion `m_elem != ((void *)0)&#039; failed.<br />Aborted</p></div></blockquote></div><p>This sounds more like a Pulseaudio-related problem to me.</p>]]></description>
			<author><![CDATA[dummy@example.com (n2o4)]]></author>
			<pubDate>Thu, 24 May 2012 12:20:53 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=223216#p223216</guid>
		</item>
		<item>
			<title><![CDATA[Re: Big Ol' Awesome Config Thread!]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=222469#p222469</link>
			<description><![CDATA[<p>Im using conky in my awesome setup and im able to&#160; close conkywith my alt f4 just like any other window. What do I need to do to make it unclosable? And sorry if this is wrong topic didnt know if it was an awesome or conky problem</p>]]></description>
			<author><![CDATA[dummy@example.com (dLclassic)]]></author>
			<pubDate>Wed, 23 May 2012 02:07:57 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=222469#p222469</guid>
		</item>
	</channel>
</rss>
