Difference between pages "Package:Awesome (Window Manager)" and "Template:FuntooMirror"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m (Linked display manager to the (yet non-existing) matching category)
 
 
Line 1: Line 1:
{{Ebuild
[http://ftp.osuosl.org/pub/funtoo/{{#if:{{{snapshots|}}}|funtoo-current/snapshots/ snapshots|{{{build}}}{{if||{{{subarch|}}}|/{{{arch_desc}}}/{{{subarch}}}/ {{{build}}}-{{{arch_desc}}}| {{{build}}} mirror}} }}]
|Summary=A dynamic floating and tiling window manager.
|CatPkg=x11-wm/awesome
|Maintainer=
|Homepage=http://awesome.naquadah.org/
}}
 
== About Awesome ==
 
Awesome is a highly configurable window manager distributed under GPL-2 license. It handles both '''tiling and floating''' layouts. You can go into a '''fine-grained customization''' to suit your needs with '''[[Package:Lua|Lua scripting]]'''. As a window manager, awesome is an ideal choice if you plan to ''get rid of your mouse''.
 
=== Vocabulary ===
 
;Screen: A physical monitor plugged into your computer.
;Client: A window.
;Tag: A tag is something like a workspace or a desktop that you may find in other window managers. However, it is slightly more flexible as you can attach a ''client'' to multiple tags. Moreover, each ''screen'' has its own range of tags.
;Layout: A layout is a way to arrange your ''clients'' in the current tag (eg. floating, horizontaly tiled, verticaly tiled, focused client full-screen, ...)
;Widget: A widget is a box that can contain text, images or more advanced objects. It enables you to add pieces of information in the status bar (at the top-right of each ''screen'') such as the time, the volume level or your battery load. You can also add widgets in the title bar of a ''client''.
 
== Installation ==
 
Just emerge it:
 
<console>
###i## emerge -a awesome
</console>
 
You can skip to [[#Getting Started]] if you use a [[:Category:Display_Managers|display manager]]. The following lines describe how to use awesome with [[Pacakge:Xinit|Xinit]].
 
Now you can add this line to your <code>~/.xinitrc</code>:
 
{{file|name=~/.xinitrc|body=
exec --sh-syntax --exit-with-session awesome
}}
 
You might also want to pass <code>ck-launch-session</code> and/or <code>dbus-launch</code> if you want respectively [[Package:ConsoleKit|ConsoleKit]] and/or [[Package:Dbus|dbus]] support. Your <code>~/.xinitrc</code> would then look like:
 
{{file|name=~/.xinitrc|desc=with consolekit and dbus support|body=
exec ck-launch-session dbus-launch --sh-syntax --exit-with-session awesome
}}
 
And run <code>xinit</code> to launch awesome. You can also configure a display manager instead, but this is not covered in this document.
 
== Getting Started ==
 
So, you should see a nice awesome background and a top bar which includes your tags on the left (from 1 to 9), the status bar (containing a clock widget) on the right and, on the very left, an icon representing the current layout.
 
You can switch against tags by typing <code>Mod4 + [1..9]</code> or <code>Mod4 + Left/Right</code>. Where Mod4 is the "Super" key and [1..9] any digit from 1 to 9. Mod4 is the default modifier for awesome key bindings, yet you can configure another one (See [[#Configuration]]).
 
To run a program, hit <code>Mod4 + r</code>. You will be prompted for a command to run (on the top left corner, next to the tags list). Open some clients (3 or 4) and hit <code>Mod4 + Space</code>. This will switch to the next layout. Go ahead and try available layouts (notice the layout icon on the top right corner). You can also switch to the previous layout by hitting <code>Mod4 + Shift + Space</code>. To understand how each layout is arranged, you might want to add some more clients to the current tag. You can also toggle full screen for the current focused client with <code>Mod4 + f</code>.
 
Here is some other interesting key bindings:
 
* <code>Mod4 + h/l</code>: Resize clients (this will not work on some layouts)
* <code>Mod4 + Ctrl + r</code>: Restart awesome (useful when you want to test the configuration file you just edited)
* <code>Mod4 + Shift + q</code>: Quit awesome (note that this will not exit your display manager if ever you have one)
 
There's plenty of other key bindings. We will see them, how to change them and how to create your own in the next section.
 
== Configuration ==
 
Awesome user configuration files are located in <code>~/.config/awesome/</code>. For now, a single file called <code>rc.lua</code> should lie in this directory. It contains the default configuration (including widgets, tags, key bindings, ...). Note that if you don't know [[Package:Lua|Lua]], you can still proceed some customization. As far as I'm concerned, I only had to learn Lua basics when I started to create my own widgets.
 
{{fancynote|The system-wide configuration files are located in <code>/etc/xdg/awesome/</code>.}}
 
So, the first thing you might want to do is editing the default terminal (run when you hit <code>Mod4 + Return</code>). You can also change the fallback editor, but awesome uses <code>$EDITOR</code> to find your favorite one. This can be done on these lines:
{{file|name=~/.config/awesome/rc.lua|lang=lua|body=
terminal = "xterm"
editor = os.getenv("EDITOR") or "nano"
editor_cmd = terminal .. " -e " .. editor
}}
 
For strings, <code>..</code> is the concatenation operator in Lua.
 
I think the modkey setting is well-documented enough, so next will be the layouts setting:
 
{{file|name=~/.config/awesome/rc.lua|lang=lua|body=
local layouts =
{
    awful.layouts.suit.floating,
    awful.layouts.suit.tile,
    awful.layouts.suit.tile.left,
    awful.layouts.suit.tile.bottom,
    awful.layouts.suit.tile.top,
    awful.layouts.suit.fair,
    awful.layouts.suit.fair.horizontal,
    awful.layouts.suit.spiral,
    awful.layouts.suit.spiral.dwindle,
    awful.layouts.suit.max,
    awful.layouts.suit.max.fullscreen,
    awful.layouts.suit.magnifier
}
}}
 
These are the default layouts, but you can download some others and create your own. You probably won't do it now, however you might want to change the order. Personally, I don't like to have the floating layout as the default one.
 
I won't go further about this file, so I would suggest you to go on browsing this file to fetch interesting settings to change. I think one of the most important section you want to check out is "Key bindings". You will see all existing mappings and what they do. As an example, find the following lines at the beginning of the "{{{ Key bindings" section:
 
{{file|name=~/.config/awesome/rc.lua|lang=lua|body=
    awful.key({modkey,          },  "j",
        function()
            awful.client.focus.byidx( 1)
            if client.focus then client.focus:raise() end
        end),
    awful.key({modkey,          },  "k",
        function()
            awful.client.focus.byidx(-1)
            if client.focus then client.focus:raise() end
        end),
}}
 
This enables you to move the focus across the clients in this tag. You may be used to <code>Alt + Tab</code> and <code>Alt + Shift + Tab</code> for that. So why wouldn't you change it to suit what you are used to ?
 
{{file|name=~/.config/awesome/rc.lua|lang=lua|body=
    awful.key({"Mod1", "Shift"  },  "Tab", -- Notice the "Mod1" for Alt key instead of modkey (="Mod4")
        function()
            awful.client.focus.byidx( 1)
            if client.focus then client.focus:raise() end
        end),
    awful.key({"Mod1", "Shift"  },  "Tab",
        function()
            awful.client.focus.byidx(-1)
            if client.focus then client.focus:raise() end
        end),
}}
 
{{EbuildFooter}}
 
[[Category:Desktop]]

Latest revision as of 21:26, September 25, 2014