Created
August 12, 2009 07:48
-
-
Save pmakholm/166368 to your computer and use it in GitHub Desktop.
My Awesome3 configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Standard awesome library | |
require("awful") | |
require("awful.rules") | |
require("awful.autofocus") | |
-- Theme handling library | |
require("beautiful") | |
-- Notification library | |
require("naughty") | |
-- Load Debian menu entries | |
require("debian.menu") | |
-- {{{ Variable definitions | |
-- Themes define colours, icons, and wallpapers | |
-- The default is a dark theme | |
-- theme_path = "/usr/share/awesome/themes/default/theme.lua" | |
-- Uncommment this for a lighter theme | |
theme_path = "/home/makholm/.config/awesome/theme.lua" | |
-- Actually load theme | |
beautiful.init(theme_path) | |
-- This is used later as the default terminal and editor to run. | |
terminal = "x-terminal-emulator" | |
editor = os.getenv("EDITOR") or "editor" | |
editor_cmd = terminal .. " -e " .. editor | |
-- Default modkey. | |
-- Usually, Mod4 is the key with a logo between Control and Alt. | |
-- If you do not like this or do not have such a key, | |
-- I suggest you to remap Mod4 to another key using xmodmap or other tools. | |
-- However, you can use another modifier like Mod1, but it may interact with others. | |
modkey = "Mod4" | |
-- Table of layouts to cover with awful.layout.inc, order matters. | |
layouts = | |
{ | |
awful.layout.suit.floating | |
-- awful.layout.suit.tile, | |
-- awful.layout.suit.tile.left, | |
-- awful.layout.suit.tile.bottom, | |
-- awful.layout.suit.tile.top, | |
-- awful.layout.suit.fair, | |
-- awful.layout.suit.fair.horizontal, | |
-- awful.layout.suit.max, | |
-- awful.layout.suit.max.fullscreen, | |
-- awful.layout.suit.magnifier, | |
} | |
apptags = { } | |
-- Define if we want to use titlebar on all applications. | |
use_titlebar = false | |
-- }}} | |
-- {{{ Tags | |
-- Define a tag table which hold all screen tags. | |
tags = {} | |
for s = 1, screen.count() do | |
-- Each screen has its own tag table. | |
tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s) | |
end | |
-- }}} | |
-- {{{ Wibox | |
-- Create a textbox widget | |
mytextbox = widget({ type = "textbox", align = "right" }) | |
-- Set the default text in textbox | |
mytextbox.text = "<b><small> " .. awesome.release .. " </small></b>" | |
-- Create a laucher widget and a main menu | |
myawesomemenu = { | |
{ "manual", terminal .. " -e man awesome" }, | |
{ "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" }, | |
{ "restart", awesome.restart }, | |
{ "quit", awesome.quit } | |
} | |
mymenu = { } | |
mymenu[1] = awful.menu.new({ items = { { "half", "/home/makholm/.bin/xterm-sized halfscreen" }, | |
{ "high", "/home/makholm/.bin/xterm-sized high" }, | |
{ "full", "/home/makholm/.bin/xterm-sized full" }, | |
{ "standard", "/home/makholm/.bin/xterm-sized standard" } | |
} | |
}) | |
mymenu[2] = awful.menu.new({ items = { | |
{ "iceweasel", "/usr/bin/iceweasel" }, | |
{ "icedove", "/usr/bin/icedove" }, | |
{ "pidgin", "/usr/bin/pidgin" }, | |
{ "xtimelog", "/home/makholm/.bin/xtimelog" }, | |
{ "audacious", "/usr/bin/audacious" }, | |
{ "google-chrome", "/usr/bin/google-chrome" } | |
} | |
}) | |
mymainmenu = awful.menu.new({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, | |
{ "open terminal", terminal }, | |
{ "Debian", debian.menu.Debian_menu.Debian } | |
} | |
}) | |
mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon), | |
menu = mymainmenu }) | |
-- Create a systray | |
mysystray = widget({ type = "systray", align = "right" }) | |
-- Create a wibox for each screen and add it | |
mywibox = {} | |
mypromptbox = {} | |
mylayoutbox = {} | |
mytaglist = {} | |
mytaglist.buttons = awful.util.table.join( | |
awful.button({ }, 1, awful.tag.viewonly), | |
awful.button({ modkey }, 1, awful.client.movetotag), | |
awful.button({ }, 3, function (tag) tag.selected = not tag.selected end), | |
awful.button({ modkey }, 3, awful.client.toggletag), | |
awful.button({ }, 4, awful.tag.viewnext), | |
awful.button({ }, 5, awful.tag.viewprev) | |
) | |
mytasklist = {} | |
mytasklist.buttons = awful.util.table.join( | |
awful.button({ }, 1, function (c) | |
if not c:isvisible() then | |
awful.tag.viewonly(c:tags()[1]) | |
end | |
client.focus = c | |
c:raise() | |
end), | |
awful.button({ }, 3, function () | |
if instance then | |
instance:hide() | |
instance = nil | |
else | |
instance = awful.menu.clients({ width=250 }) | |
end | |
end), | |
awful.button({ }, 4, function () | |
awful.client.focus.byidx(1) | |
if client.focus then client.focus:raise() end | |
end), | |
awful.button({ }, 5, function () | |
awful.client.focus.byidx(-1) | |
if client.focus then client.focus:raise() end | |
end)) | |
for s = 1, screen.count() do | |
-- Create a promptbox for each screen | |
-- mypromptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright }) | |
-- Create a taglist widget | |
mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, mytaglist.buttons) | |
-- Create a tasklist widget | |
mytasklist[s] = awful.widget.tasklist(function(c) | |
return awful.widget.tasklist.label.currenttags(c, s) | |
end, mytasklist.buttons) | |
-- Create the wibox | |
mywibox[s] = awful.wibox({ position = "top", screen = s, fg = beautiful.fg_normal, bg = beautiful.bg_normal }) | |
-- Add widgets to the wibox - order matters | |
mywibox[s].widgets = { | |
{ | |
mytaglist[s], | |
mypromptbox[s], | |
layout = awful.widget.layout.horizontal.leftright | |
}, | |
mytextclock, | |
s == 1 and mysystray or nil, | |
mytasklist[s], | |
layout = awful.widget.layout.horizontal.rightleft | |
} | |
end | |
-- }}} | |
-- {{{ Mouse bindings | |
root.buttons(awful.util.table.join( | |
awful.button({ }, 3, function () mymainmenu:toggle() end), | |
awful.button({ }, 4, awful.tag.viewnext), | |
awful.button({ }, 5, awful.tag.viewprev) | |
)) | |
-- }}} | |
-- {{{ Key bindings | |
globalkeys = awful.util.table.join( | |
awful.key({ modkey, }, "Left", awful.tag.viewprev ), | |
awful.key({ modkey, }, "Right", awful.tag.viewnext ), | |
awful.key({ modkey, "Control" }, "Left", function () awful.screen.focus_relative( 1) end), | |
awful.key({ modkey, "Control" }, "Right", function () awful.screen.focus_relative(-1) end), | |
awful.key({ modkey, }, "Escape", function() awful.util.spawn("xscreensaver-command -lock") end ), | |
awful.key({ modkey, }, "Tab", | |
function () | |
awful.client.focus.byidx( 1) | |
if client.focus then client.focus:raise() end | |
end), | |
awful.key({ modkey, "Shift" }, "Tab", | |
function () | |
awful.client.focus.byidx(-1) | |
if client.focus then client.focus:raise() end | |
end), | |
awful.key({ modkey, }, "w", function () mymainmenu:show(true) end), | |
awful.key({ modkey, }, "F1", function () mymenu[1]:show(true) end), | |
awful.key({ modkey, }, "F2", function () mymenu[2]:show(true) end), | |
-- Layout manipulation | |
awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end), | |
awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end), | |
awful.key({ modkey, "Control" }, "j", function () awful.screen.focus( 1) end), | |
awful.key({ modkey, "Control" }, "k", function () awful.screen.focus(-1) end), | |
awful.key({ modkey, }, "u", awful.client.urgent.jumpto), | |
-- Standard program | |
awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end), | |
awful.key({ modkey, "Control" }, "r", awesome.restart), | |
awful.key({ modkey, "Shift" }, "q", awesome.quit), | |
-- Prompt | |
awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end), | |
awful.key({ modkey }, "x", | |
function () | |
awful.prompt.run({ prompt = "Run Lua code: " }, | |
mypromptbox[mouse.screen].widget, | |
awful.util.eval, nil, | |
awful.util.getdir("cache") .. "/history_eval") | |
end) | |
) | |
-- Client awful tagging: this is useful to tag some clients and then do stuff like move to tag on them | |
clientkeys = awful.util.table.join( | |
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end), | |
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end), | |
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), | |
awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), | |
awful.key({ modkey, }, "o", awful.client.movetoscreen ), | |
awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), | |
awful.key({ modkey }, "t", awful.client.togglemarked), | |
awful.key({ modkey,}, "m", | |
function (c) | |
c.maximized_horizontal = not c.maximized_horizontal | |
c.maximized_vertical = not c.maximized_vertical | |
end) | |
) | |
-- Compute the maximum number of digit we need, limited to 9 | |
keynumber = 0 | |
for s = 1, screen.count() do | |
keynumber = math.min(9, math.max(#tags[s], keynumber)); | |
end | |
for i = 1, keynumber do | |
globalkeys = awful.util.table.join(globalkeys, | |
awful.key({ modkey }, i, | |
function () | |
local screen = mouse.screen | |
if tags[screen][i] then | |
awful.tag.viewonly(tags[screen][i]) | |
end | |
end), | |
awful.key({ modkey, "Control" }, i, | |
function () | |
local screen = mouse.screen | |
if tags[screen][i] then | |
tags[screen][i].selected = not tags[screen][i].selected | |
end | |
end), | |
awful.key({ modkey, "Shift" }, i, | |
function () | |
if client.focus and tags[client.focus.screen][i] then | |
awful.client.movetotag(tags[client.focus.screen][i]) | |
end | |
end), | |
awful.key({ modkey, "Control", "Shift" }, i, | |
function () | |
if client.focus and tags[client.focus.screen][i] then | |
awful.client.toggletag(tags[client.focus.screen][i]) | |
end | |
end), | |
awful.key({ modkey, "Shift" }, "F" .. i, | |
function () | |
local screen = mouse.screen | |
if tags[screen][i] then | |
for k, c in pairs(awful.client.getmarked()) do | |
awful.client.movetotag(tags[screen][i], c) | |
end | |
end | |
end)) | |
end | |
clientbuttons = awful.util.table.join( | |
awful.button({ }, 1, function (c) client.focus = c; c:raise() end), | |
awful.button({ modkey }, 1, awful.mouse.client.move), | |
awful.button({ modkey }, 3, awful.mouse.client.resize)) | |
-- Set keys | |
root.keys(globalkeys) | |
-- }}} | |
-- {{{ Rules | |
awful.rules.rules = { | |
-- All clients will match this rule. | |
{ rule = { }, | |
properties = { border_width = beautiful.border_width, | |
border_color = beautiful.border_normal, | |
focus = true, | |
keys = clientkeys, | |
buttons = clientbuttons } }, | |
} | |
-- {{{ Signals | |
-- Signal function to execute when a new client appears. | |
client.add_signal("manage", function (c, startup) | |
-- Add a titlebar | |
-- awful.titlebar.add(c, { modkey = modkey }) | |
-- Enable sloppy focus | |
-- c:add_signal("mouse::enter", function(c) | |
-- if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier | |
-- and awful.client.focus.filter(c) then | |
-- client.focus = c | |
-- end | |
-- end) | |
-- All applications should be floating | |
awful.client.floating.set(c, true) | |
if not startup then | |
-- Set the windows at the slave, | |
-- i.e. put it at the end of others instead of setting it master. | |
-- awful.client.setslave(c) | |
-- Put windows in a smart way, only if they does not set an initial position. | |
if not c.size_hints.user_position and not c.size_hints.program_position then | |
awful.placement.no_overlap(c) | |
awful.placement.no_offscreen(c) | |
end | |
end | |
end) | |
client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end) | |
client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) | |
-- Autofocus solves this... | |
--for s = 1, screen.count() do | |
-- screen[s]:add_signal("tag::history::update", function() | |
-- local c = awful.client.focus.history.get(s, 0) | |
-- if c then client.focus = c end | |
-- end) | |
--end | |
-- }}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------- | |
-- "Sky" awesome theme -- | |
-- By Andrei "Garoth" Thorp -- | |
------------------------------- | |
-- If you want SVGs and extras, get them from garoth.com/awesome/sky-theme | |
-- BASICS | |
theme = {} | |
theme.font = "sans 8" | |
theme.bg_focus = "#e2eeea" | |
theme.bg_normal = "#729fcf" | |
theme.bg_urgent = "#fce94f" | |
theme.bg_minimize = "#0067ce" | |
theme.fg_normal = "#2e3436" | |
theme.fg_focus = "#2e3436" | |
theme.fg_urgent = "#2e3436" | |
theme.fg_minimize = "#2e3436" | |
theme.border_width = "2" | |
theme.border_normal = "#dae3e0" | |
theme.border_focus = "#ff0000" | |
theme.border_marked = "#eeeeec" | |
-- IMAGES | |
theme.layout_fairh = "/usr/share/awesome/themes/sky/layouts/fairh.png" | |
theme.layout_fairv = "/usr/share/awesome/themes/sky/layouts/fairv.png" | |
theme.layout_floating = "/usr/share/awesome/themes/sky/layouts/floating.png" | |
theme.layout_magnifier = "/usr/share/awesome/themes/sky/layouts/magnifier.png" | |
theme.layout_max = "/usr/share/awesome/themes/sky/layouts/max.png" | |
theme.layout_fullscreen = "/usr/share/awesome/themes/sky/layouts/fullscreen.png" | |
theme.layout_tilebottom = "/usr/share/awesome/themes/sky/layouts/tilebottom.png" | |
theme.layout_tileleft = "/usr/share/awesome/themes/sky/layouts/tileleft.png" | |
theme.layout_tile = "/usr/share/awesome/themes/sky/layouts/tile.png" | |
theme.layout_tiletop = "/usr/share/awesome/themes/sky/layouts/tiletop.png" | |
theme.awesome_icon = "/usr/share/awesome/themes/sky/awesome-icon.png" | |
theme.tasklist_floating_icon = "/usr/share/awesome/themes/sky/layouts/floating.png" | |
-- from default for now... | |
theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png" | |
theme.taglist_squares_sel = "/usr/share/awesome/themes/default/taglist/squarefw.png" | |
theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png" | |
-- MISC | |
theme.wallpaper_cmd = { "xsetroot -solid black" } | |
theme.taglist_squares = "true" | |
theme.titlebar_close_button = "true" | |
theme.menu_height = "15" | |
theme.menu_width = "100" | |
-- Define the image to load | |
theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close_normal.png" | |
theme.titlebar_close_button_focus = "/usr/share/awesome/themes/default/titlebar/close_focus.png" | |
theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_normal_inactive.png" | |
theme.titlebar_ontop_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_focus_inactive.png" | |
theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/default/titlebar/ontop_normal_active.png" | |
theme.titlebar_ontop_button_focus_active = "/usr/share/awesome/themes/default/titlebar/ontop_focus_active.png" | |
theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_normal_inactive.png" | |
theme.titlebar_sticky_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_focus_inactive.png" | |
theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/default/titlebar/sticky_normal_active.png" | |
theme.titlebar_sticky_button_focus_active = "/usr/share/awesome/themes/default/titlebar/sticky_focus_active.png" | |
theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/floating_normal_inactive.png" | |
theme.titlebar_floating_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/floating_focus_inactive.png" | |
theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/default/titlebar/floating_normal_active.png" | |
theme.titlebar_floating_button_focus_active = "/usr/share/awesome/themes/default/titlebar/floating_focus_active.png" | |
theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_normal_inactive.png" | |
theme.titlebar_maximized_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_focus_inactive.png" | |
theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/default/titlebar/maximized_normal_active.png" | |
theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png" | |
return theme | |
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment