draw: Add function for finding a visual by id
[awesome.git] / awesomerc.lua.in
blob54c42fb4809859a1c1da914c5f5b87e6c1cbc04c
1 -- Standard awesome library
2 local gears = require("gears")
3 local awful = require("awful")
4 awful.rules = require("awful.rules")
5 require("awful.autofocus")
6 -- Widget and layout library
7 local wibox = require("wibox")
8 -- Theme handling library
9 local beautiful = require("beautiful")
10 -- Notification library
11 local naughty = require("naughty")
12 local menubar = require("menubar")
14 -- {{{ Error handling
15 -- Check if awesome encountered an error during startup and fell back to
16 -- another config (This code will only ever execute for the fallback config)
17 if awesome.startup_errors then
18 naughty.notify({ preset = naughty.config.presets.critical,
19 title = "Oops, there were errors during startup!",
20 text = awesome.startup_errors })
21 end
23 -- Handle runtime errors after startup
25 local in_error = false
26 awesome.connect_signal("debug::error", function (err)
27 -- Make sure we don't go into an endless error loop
28 if in_error then return end
29 in_error = true
31 naughty.notify({ preset = naughty.config.presets.critical,
32 title = "Oops, an error happened!",
33 text = err })
34 in_error = false
35 end)
36 end
37 -- }}}
39 -- {{{ Variable definitions
40 -- Themes define colours, icons, and wallpapers
41 beautiful.init("@AWESOME_THEMES_PATH@/default/theme.lua")
43 -- This is used later as the default terminal and editor to run.
44 terminal = "xterm"
45 editor = os.getenv("EDITOR") or "nano"
46 editor_cmd = terminal .. " -e " .. editor
48 -- Default modkey.
49 -- Usually, Mod4 is the key with a logo between Control and Alt.
50 -- If you do not like this or do not have such a key,
51 -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
52 -- However, you can use another modifier like Mod1, but it may interact with others.
53 modkey = "Mod4"
55 -- Table of layouts to cover with awful.layout.inc, order matters.
56 local layouts =
58 awful.layout.suit.floating,
59 awful.layout.suit.tile,
60 awful.layout.suit.tile.left,
61 awful.layout.suit.tile.bottom,
62 awful.layout.suit.tile.top,
63 awful.layout.suit.fair,
64 awful.layout.suit.fair.horizontal,
65 awful.layout.suit.spiral,
66 awful.layout.suit.spiral.dwindle,
67 awful.layout.suit.max,
68 awful.layout.suit.max.fullscreen,
69 awful.layout.suit.magnifier
71 -- }}}
73 -- {{{ Wallpaper
74 if beautiful.wallpaper then
75 for s = 1, screen.count() do
76 gears.wallpaper.maximized(beautiful.wallpaper, s, true)
77 end
78 end
79 -- }}}
81 -- {{{ Tags
82 -- Define a tag table which hold all screen tags.
83 tags = {}
84 for s = 1, screen.count() do
85 -- Each screen has its own tag table.
86 tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
87 end
88 -- }}}
90 -- {{{ Menu
91 -- Create a laucher widget and a main menu
92 myawesomemenu = {
93 { "manual", terminal .. " -e man awesome" },
94 { "edit config", editor_cmd .. " " .. awesome.conffile },
95 { "restart", awesome.restart },
96 { "quit", awesome.quit }
99 mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
100 { "open terminal", terminal }
104 mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
105 menu = mymainmenu })
107 -- Menubar configuration
108 menubar.utils.terminal = terminal -- Set the terminal for applications that require it
109 -- }}}
111 -- {{{ Wibox
112 -- Create a textclock widget
113 mytextclock = awful.widget.textclock()
115 -- Create a wibox for each screen and add it
116 mywibox = {}
117 mypromptbox = {}
118 mylayoutbox = {}
119 mytaglist = {}
120 mytaglist.buttons = awful.util.table.join(
121 awful.button({ }, 1, awful.tag.viewonly),
122 awful.button({ modkey }, 1, awful.client.movetotag),
123 awful.button({ }, 3, awful.tag.viewtoggle),
124 awful.button({ modkey }, 3, awful.client.toggletag),
125 awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
126 awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
128 mytasklist = {}
129 mytasklist.buttons = awful.util.table.join(
130 awful.button({ }, 1, function (c)
131 if c == client.focus then
132 c.minimized = true
133 else
134 -- Without this, the following
135 -- :isvisible() makes no sense
136 c.minimized = false
137 if not c:isvisible() then
138 awful.tag.viewonly(c:tags()[1])
140 -- This will also un-minimize
141 -- the client, if needed
142 client.focus = c
143 c:raise()
145 end),
146 awful.button({ }, 3, function ()
147 if instance then
148 instance:hide()
149 instance = nil
150 else
151 instance = awful.menu.clients({ width=250 })
153 end),
154 awful.button({ }, 4, function ()
155 awful.client.focus.byidx(1)
156 if client.focus then client.focus:raise() end
157 end),
158 awful.button({ }, 5, function ()
159 awful.client.focus.byidx(-1)
160 if client.focus then client.focus:raise() end
161 end))
163 for s = 1, screen.count() do
164 -- Create a promptbox for each screen
165 mypromptbox[s] = awful.widget.prompt()
166 -- Create an imagebox widget which will contains an icon indicating which layout we're using.
167 -- We need one layoutbox per screen.
168 mylayoutbox[s] = awful.widget.layoutbox(s)
169 mylayoutbox[s]:buttons(awful.util.table.join(
170 awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
171 awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
172 awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
173 awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
174 -- Create a taglist widget
175 mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
177 -- Create a tasklist widget
178 mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
180 -- Create the wibox
181 mywibox[s] = awful.wibox({ position = "top", screen = s })
183 -- Widgets that are aligned to the left
184 local left_layout = wibox.layout.fixed.horizontal()
185 left_layout:add(mylauncher)
186 left_layout:add(mytaglist[s])
187 left_layout:add(mypromptbox[s])
189 -- Widgets that are aligned to the right
190 local right_layout = wibox.layout.fixed.horizontal()
191 if s == 1 then right_layout:add(wibox.widget.systray()) end
192 right_layout:add(mytextclock)
193 right_layout:add(mylayoutbox[s])
195 -- Now bring it all together (with the tasklist in the middle)
196 local layout = wibox.layout.align.horizontal()
197 layout:set_left(left_layout)
198 layout:set_middle(mytasklist[s])
199 layout:set_right(right_layout)
201 mywibox[s]:set_widget(layout)
203 -- }}}
205 -- {{{ Mouse bindings
206 root.buttons(awful.util.table.join(
207 awful.button({ }, 3, function () mymainmenu:toggle() end),
208 awful.button({ }, 4, awful.tag.viewnext),
209 awful.button({ }, 5, awful.tag.viewprev)
211 -- }}}
213 -- {{{ Key bindings
214 globalkeys = awful.util.table.join(
215 awful.key({ modkey, }, "Left", awful.tag.viewprev ),
216 awful.key({ modkey, }, "Right", awful.tag.viewnext ),
217 awful.key({ modkey, }, "Escape", awful.tag.history.restore),
219 awful.key({ modkey, }, "j",
220 function ()
221 awful.client.focus.byidx( 1)
222 if client.focus then client.focus:raise() end
223 end),
224 awful.key({ modkey, }, "k",
225 function ()
226 awful.client.focus.byidx(-1)
227 if client.focus then client.focus:raise() end
228 end),
229 awful.key({ modkey, }, "w", function () mymainmenu:show() end),
231 -- Layout manipulation
232 awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
233 awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
234 awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
235 awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
236 awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
237 awful.key({ modkey, }, "Tab",
238 function ()
239 awful.client.focus.history.previous()
240 if client.focus then
241 client.focus:raise()
243 end),
245 -- Standard program
246 awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
247 awful.key({ modkey, "Control" }, "r", awesome.restart),
248 awful.key({ modkey, "Shift" }, "q", awesome.quit),
250 awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
251 awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
252 awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
253 awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
254 awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
255 awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
256 awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
257 awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
259 awful.key({ modkey, "Control" }, "n", awful.client.restore),
261 -- Prompt
262 awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
264 awful.key({ modkey }, "x",
265 function ()
266 awful.prompt.run({ prompt = "Run Lua code: " },
267 mypromptbox[mouse.screen].widget,
268 awful.util.eval, nil,
269 awful.util.getdir("cache") .. "/history_eval")
270 end),
271 -- Menubar
272 awful.key({ modkey }, "p", function() menubar.show() end)
275 clientkeys = awful.util.table.join(
276 awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
277 awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
278 awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
279 awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
280 awful.key({ modkey, }, "o", awful.client.movetoscreen ),
281 awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
282 awful.key({ modkey, }, "n",
283 function (c)
284 -- The client currently has the input focus, so it cannot be
285 -- minimized, since minimized clients can't have the focus.
286 c.minimized = true
287 end),
288 awful.key({ modkey, }, "m",
289 function (c)
290 c.maximized_horizontal = not c.maximized_horizontal
291 c.maximized_vertical = not c.maximized_vertical
292 end)
295 -- Bind all key numbers to tags.
296 -- Be careful: we use keycodes to make it works on any keyboard layout.
297 -- This should map on the top row of your keyboard, usually 1 to 9.
298 for i = 1, 9 do
299 globalkeys = awful.util.table.join(globalkeys,
300 awful.key({ modkey }, "#" .. i + 9,
301 function ()
302 local screen = mouse.screen
303 local tag = awful.tag.gettags(screen)[i]
304 if tag then
305 awful.tag.viewonly(tag)
307 end),
308 awful.key({ modkey, "Control" }, "#" .. i + 9,
309 function ()
310 local screen = mouse.screen
311 local tag = awful.tag.gettags(screen)[i]
312 if tag then
313 awful.tag.viewtoggle(tag)
315 end),
316 awful.key({ modkey, "Shift" }, "#" .. i + 9,
317 function ()
318 local tag = awful.tag.gettags(client.focus.screen)[i]
319 if client.focus and tag then
320 awful.client.movetotag(tag)
322 end),
323 awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
324 function ()
325 local tag = awful.tag.gettags(client.focus.screen)[i]
326 if client.focus and tag then
327 awful.client.toggletag(tag)
329 end))
332 clientbuttons = awful.util.table.join(
333 awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
334 awful.button({ modkey }, 1, awful.mouse.client.move),
335 awful.button({ modkey }, 3, awful.mouse.client.resize))
337 -- Set keys
338 root.keys(globalkeys)
339 -- }}}
341 -- {{{ Rules
342 awful.rules.rules = {
343 -- All clients will match this rule.
344 { rule = { },
345 properties = { border_width = beautiful.border_width,
346 border_color = beautiful.border_normal,
347 focus = awful.client.focus.filter,
348 keys = clientkeys,
349 buttons = clientbuttons } },
350 { rule = { class = "MPlayer" },
351 properties = { floating = true } },
352 { rule = { class = "pinentry" },
353 properties = { floating = true } },
354 { rule = { class = "gimp" },
355 properties = { floating = true } },
356 -- Set Firefox to always map on tags number 2 of screen 1.
357 -- { rule = { class = "Firefox" },
358 -- properties = { tag = tags[1][2] } },
360 -- }}}
362 -- {{{ Signals
363 -- Signal function to execute when a new client appears.
364 client.connect_signal("manage", function (c, startup)
365 -- Enable sloppy focus
366 c:connect_signal("mouse::enter", function(c)
367 if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
368 and awful.client.focus.filter(c) then
369 client.focus = c
371 end)
373 if not startup then
374 -- Set the windows at the slave,
375 -- i.e. put it at the end of others instead of setting it master.
376 -- awful.client.setslave(c)
378 -- Put windows in a smart way, only if they does not set an initial position.
379 if not c.size_hints.user_position and not c.size_hints.program_position then
380 awful.placement.no_overlap(c)
381 awful.placement.no_offscreen(c)
385 local titlebars_enabled = false
386 if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
387 -- buttons for the titlebar
388 local buttons = awful.util.table.join(
389 awful.button({ }, 1, function()
390 client.focus = c
391 c:raise()
392 awful.mouse.client.move(c)
393 end),
394 awful.button({ }, 3, function()
395 client.focus = c
396 c:raise()
397 awful.mouse.client.resize(c)
398 end)
401 -- Widgets that are aligned to the left
402 local left_layout = wibox.layout.fixed.horizontal()
403 left_layout:add(awful.titlebar.widget.iconwidget(c))
404 left_layout:buttons(buttons)
406 -- Widgets that are aligned to the right
407 local right_layout = wibox.layout.fixed.horizontal()
408 right_layout:add(awful.titlebar.widget.floatingbutton(c))
409 right_layout:add(awful.titlebar.widget.maximizedbutton(c))
410 right_layout:add(awful.titlebar.widget.stickybutton(c))
411 right_layout:add(awful.titlebar.widget.ontopbutton(c))
412 right_layout:add(awful.titlebar.widget.closebutton(c))
414 -- The title goes in the middle
415 local middle_layout = wibox.layout.flex.horizontal()
416 local title = awful.titlebar.widget.titlewidget(c)
417 title:set_align("center")
418 middle_layout:add(title)
419 middle_layout:buttons(buttons)
421 -- Now bring it all together
422 local layout = wibox.layout.align.horizontal()
423 layout:set_left(left_layout)
424 layout:set_right(right_layout)
425 layout:set_middle(middle_layout)
427 awful.titlebar(c):set_widget(layout)
429 end)
431 client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
432 client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
433 -- }}}