luaa: move version and release to awesome module
[awesome.git] / awesomerc.lua.in
blobf12ad82243592d38af0af0e5ba1464cfd1475cf0
1 -- Standard awesome library
2 require("awful")
3 -- Theme handling library
4 require("beautiful")
5 -- Notification library
6 require("naughty")
8 -- {{{ Variable definitions
9 -- Themes define colours, icons, and wallpapers
10 -- The default is a dark theme
11 theme_path = "@AWESOME_THEMES_PATH@/default/theme"
12 -- Uncommment this for a lighter theme
13 -- theme_path = "@AWESOME_THEMES_PATH@/sky/theme"
15 -- Actually load theme
16 beautiful.init(theme_path)
18 -- This is used later as the default terminal and editor to run.
19 terminal = "xterm"
20 editor = os.getenv("EDITOR") or "nano"
21 editor_cmd = terminal .. " -e " .. editor
23 -- Default modkey.
24 -- Usually, Mod4 is the key with a logo between Control and Alt.
25 -- If you do not like this or do not have such a key,
26 -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
27 -- However, you can use another modifier like Mod1, but it may interact with others.
28 modkey = "Mod4"
30 -- Table of layouts to cover with awful.layout.inc, order matters.
31 layouts =
33 awful.layout.suit.tile,
34 awful.layout.suit.tile.left,
35 awful.layout.suit.tile.bottom,
36 awful.layout.suit.tile.top,
37 awful.layout.suit.fair,
38 awful.layout.suit.fair.horizontal,
39 awful.layout.suit.max,
40 awful.layout.suit.max.fullscreen,
41 awful.layout.suit.magnifier,
42 awful.layout.suit.floating
45 -- Table of clients that should be set floating. The index may be either
46 -- the application class or instance. The instance is useful when running
47 -- a console app in a terminal like (Music on Console)
48 -- xterm -name mocp -e mocp
49 floatapps =
51 -- by class
52 ["MPlayer"] = true,
53 ["pinentry"] = true,
54 ["gimp"] = true,
55 -- by instance
56 ["mocp"] = true
59 -- Applications to be moved to a pre-defined tag by class or instance.
60 -- Use the screen and tags indices.
61 apptags =
63 -- ["Firefox"] = { screen = 1, tag = 2 },
64 -- ["mocp"] = { screen = 2, tag = 4 },
67 -- Define if we want to use titlebar on all applications.
68 use_titlebar = false
69 -- }}}
71 -- {{{ Tags
72 -- Define tags table.
73 tags = {}
74 for s = 1, screen.count() do
75 -- Each screen has its own tag table.
76 tags[s] = {}
77 -- Create 9 tags per screen.
78 for tagnumber = 1, 9 do
79 tags[s][tagnumber] = tag(tagnumber)
80 -- Add tags to screen one by one
81 tags[s][tagnumber].screen = s
82 awful.layout.set(layouts[1], tags[s][tagnumber])
83 end
84 -- I'm sure you want to see at least one tag.
85 tags[s][1].selected = true
86 end
87 -- }}}
89 -- {{{ Wibox
90 -- Create a textbox widget
91 mytextbox = widget({ type = "textbox", align = "right" })
92 -- Set the default text in textbox
93 mytextbox.text = "<b><small> " .. awesome.release .. " </small></b>"
95 -- Create a laucher widget and a main menu
96 myawesomemenu = {
97 { "manual", terminal .. " -e man awesome" },
98 { "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
99 { "restart", awesome.restart },
100 { "quit", awesome.quit }
103 mymainmenu = awful.menu.new({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
104 { "open terminal", terminal }
108 mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
109 menu = mymainmenu })
111 -- Create a systray
112 mysystray = widget({ type = "systray", align = "right" })
114 -- Create a wibox for each screen and add it
115 mywibox = {}
116 mypromptbox = {}
117 mylayoutbox = {}
118 mytaglist = {}
119 mytaglist.buttons = awful.util.table.join(
120 awful.button({ }, 1, awful.tag.viewonly),
121 awful.button({ modkey }, 1, awful.client.movetotag),
122 awful.button({ }, 3, function (tag) tag.selected = not tag.selected end),
123 awful.button({ modkey }, 3, awful.client.toggletag),
124 awful.button({ }, 4, awful.tag.viewnext),
125 awful.button({ }, 5, awful.tag.viewprev)
127 mytasklist = {}
128 mytasklist.buttons = awful.util.table.join(
129 awful.button({ }, 1, function (c)
130 if not c:isvisible() then
131 awful.tag.viewonly(c:tags()[1])
133 client.focus = c
134 c:raise()
135 end),
136 awful.button({ }, 3, function ()
137 if instance then
138 instance:hide()
139 instance = nil
140 else
141 instance = awful.menu.clients({ width=250 })
143 end),
144 awful.button({ }, 4, function ()
145 awful.client.focus.byidx(1)
146 if client.focus then client.focus:raise() end
147 end),
148 awful.button({ }, 5, function ()
149 awful.client.focus.byidx(-1)
150 if client.focus then client.focus:raise() end
151 end))
153 for s = 1, screen.count() do
154 -- Create a promptbox for each screen
155 mypromptbox[s] = awful.widget.prompt({ align = "left" })
156 -- Create an imagebox widget which will contains an icon indicating which layout we're using.
157 -- We need one layoutbox per screen.
158 mylayoutbox[s] = widget({ type = "imagebox", align = "right" })
159 mylayoutbox[s]:buttons(awful.util.table.join(
160 awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
161 awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
162 awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
163 awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
164 -- Create a taglist widget
165 mytaglist[s] = awful.widget.taglist.new(s, awful.widget.taglist.label.all, mytaglist.buttons)
167 -- Create a tasklist widget
168 mytasklist[s] = awful.widget.tasklist.new(function(c)
169 return awful.widget.tasklist.label.currenttags(c, s)
170 end, mytasklist.buttons)
172 -- Create the wibox
173 mywibox[s] = wibox({ position = "top", fg = beautiful.fg_normal, bg = beautiful.bg_normal })
174 -- Add widgets to the wibox - order matters
175 mywibox[s].widgets = { mylauncher,
176 mytaglist[s],
177 mytasklist[s],
178 mypromptbox[s],
179 mytextbox,
180 mylayoutbox[s],
181 s == 1 and mysystray or nil }
182 mywibox[s].screen = s
184 -- }}}
186 -- {{{ Mouse bindings
187 root.buttons(awful.util.table.join(
188 awful.button({ }, 3, function () mymainmenu:toggle() end),
189 awful.button({ }, 4, awful.tag.viewnext),
190 awful.button({ }, 5, awful.tag.viewprev)
192 -- }}}
194 -- {{{ Key bindings
195 globalkeys = awful.util.table.join(
196 awful.key({ modkey, }, "Left", awful.tag.viewprev ),
197 awful.key({ modkey, }, "Right", awful.tag.viewnext ),
198 awful.key({ modkey, }, "Escape", awful.tag.history.restore),
200 awful.key({ modkey, }, "j",
201 function ()
202 awful.client.focus.byidx( 1)
203 if client.focus then client.focus:raise() end
204 end),
205 awful.key({ modkey, }, "k",
206 function ()
207 awful.client.focus.byidx(-1)
208 if client.focus then client.focus:raise() end
209 end),
210 awful.key({ modkey, }, "w", function () mymainmenu:show(true) end),
212 -- Layout manipulation
213 awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
214 awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
215 awful.key({ modkey, "Control" }, "j", function () awful.screen.focus( 1) end),
216 awful.key({ modkey, "Control" }, "k", function () awful.screen.focus(-1) end),
217 awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
218 awful.key({ modkey, }, "Tab",
219 function ()
220 awful.client.focus.history.previous()
221 if client.focus then
222 client.focus:raise()
224 end),
226 -- Standard program
227 awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
228 awful.key({ modkey, "Control" }, "r", awesome.restart),
229 awful.key({ modkey, "Shift" }, "q", awesome.quit),
231 awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
232 awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
233 awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
234 awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
235 awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
236 awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
237 awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
238 awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
240 -- Prompt
241 awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
243 awful.key({ modkey }, "x",
244 function ()
245 awful.prompt.run({ prompt = "Run Lua code: " },
246 mypromptbox[mouse.screen].widget,
247 awful.util.eval, nil,
248 awful.util.getdir("cache") .. "/history_eval")
249 end)
252 -- Client awful tagging: this is useful to tag some clients and then do stuff like move to tag on them
253 clientkeys = awful.util.table.join(
254 awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
255 awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
256 awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
257 awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
258 awful.key({ modkey, }, "o", awful.client.movetoscreen ),
259 awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
260 awful.key({ modkey }, "t", awful.client.togglemarked),
261 awful.key({ modkey,}, "m",
262 function (c)
263 c.maximized_horizontal = not c.maximized_horizontal
264 c.maximized_vertical = not c.maximized_vertical
265 end)
268 -- Compute the maximum number of digit we need, limited to 9
269 keynumber = 0
270 for s = 1, screen.count() do
271 keynumber = math.min(9, math.max(#tags[s], keynumber));
274 for i = 1, keynumber do
275 table.foreach(awful.key({ modkey }, i,
276 function ()
277 local screen = mouse.screen
278 if tags[screen][i] then
279 awful.tag.viewonly(tags[screen][i])
281 end), function(_, k) table.insert(globalkeys, k) end)
282 table.foreach(awful.key({ modkey, "Control" }, i,
283 function ()
284 local screen = mouse.screen
285 if tags[screen][i] then
286 tags[screen][i].selected = not tags[screen][i].selected
288 end), function(_, k) table.insert(globalkeys, k) end)
289 table.foreach(awful.key({ modkey, "Shift" }, i,
290 function ()
291 if client.focus and tags[client.focus.screen][i] then
292 awful.client.movetotag(tags[client.focus.screen][i])
294 end), function(_, k) table.insert(globalkeys, k) end)
295 table.foreach(awful.key({ modkey, "Control", "Shift" }, i,
296 function ()
297 if client.focus and tags[client.focus.screen][i] then
298 awful.client.toggletag(tags[client.focus.screen][i])
300 end), function(_, k) table.insert(globalkeys, k) end)
301 table.foreach(awful.key({ modkey, "Shift" }, "F" .. i,
302 function ()
303 local screen = mouse.screen
304 if tags[screen][i] then
305 for k, c in pairs(awful.client.getmarked()) do
306 awful.client.movetotag(tags[screen][i], c)
309 end), function(_, k) table.insert(globalkeys, k) end)
312 -- Set keys
313 root.keys(globalkeys)
314 -- }}}
316 -- {{{ Hooks
317 -- Hook function to execute when focusing a client.
318 awful.hooks.focus.register(function (c)
319 if not awful.client.ismarked(c) then
320 c.border_color = beautiful.border_focus
322 end)
324 -- Hook function to execute when unfocusing a client.
325 awful.hooks.unfocus.register(function (c)
326 if not awful.client.ismarked(c) then
327 c.border_color = beautiful.border_normal
329 end)
331 -- Hook function to execute when marking a client
332 awful.hooks.marked.register(function (c)
333 c.border_color = beautiful.border_marked
334 end)
336 -- Hook function to execute when unmarking a client.
337 awful.hooks.unmarked.register(function (c)
338 c.border_color = beautiful.border_focus
339 end)
341 -- Hook function to execute when the mouse enters a client.
342 awful.hooks.mouse_enter.register(function (c)
343 -- Sloppy focus, but disabled for magnifier layout
344 if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
345 and awful.client.focus.filter(c) then
346 client.focus = c
348 end)
350 -- Hook function to execute when a new client appears.
351 awful.hooks.manage.register(function (c, startup)
352 -- If we are not managing this application at startup,
353 -- move it to the screen where the mouse is.
354 -- We only do it for filtered windows (i.e. no dock, etc).
355 if not startup and awful.client.focus.filter(c) then
356 c.screen = mouse.screen
359 if use_titlebar then
360 -- Add a titlebar
361 awful.titlebar.add(c, { modkey = modkey })
363 -- Add mouse bindings
364 c:buttons(awful.util.table.join(
365 awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
366 awful.button({ modkey }, 1, awful.mouse.client.move),
367 awful.button({ modkey }, 3, awful.mouse.client.resize)
369 -- New client may not receive focus
370 -- if they're not focusable, so set border anyway.
371 c.border_width = beautiful.border_width
372 c.border_color = beautiful.border_normal
374 -- Check if the application should be floating.
375 local cls = c.class
376 local inst = c.instance
377 if floatapps[cls] then
378 awful.client.floating.set(c, floatapps[cls])
379 elseif floatapps[inst] then
380 awful.client.floating.set(c, floatapps[inst])
383 -- Check application->screen/tag mappings.
384 local target
385 if apptags[cls] then
386 target = apptags[cls]
387 elseif apptags[inst] then
388 target = apptags[inst]
390 if target then
391 c.screen = target.screen
392 awful.client.movetotag(tags[target.screen][target.tag], c)
395 -- Do this after tag mapping, so you don't see it on the wrong tag for a split second.
396 client.focus = c
398 -- Set key bindings
399 c:keys(clientkeys)
401 -- Set the windows at the slave,
402 -- i.e. put it at the end of others instead of setting it master.
403 -- awful.client.setslave(c)
405 -- Honor size hints: if you want to drop the gaps between windows, set this to false.
406 -- c.size_hints_honor = false
407 end)
409 -- Hook function to execute when arranging the screen.
410 -- (tag switch, new client, etc)
411 awful.hooks.arrange.register(function (screen)
412 local layout = awful.layout.getname(awful.layout.get(screen))
413 if layout and beautiful["layout_" ..layout] then
414 mylayoutbox[screen].image = image(beautiful["layout_" .. layout])
415 else
416 mylayoutbox[screen].image = nil
419 -- Give focus to the latest client in history if no window has focus
420 -- or if the current window is a desktop or a dock one.
421 if not client.focus then
422 local c = awful.client.focus.history.get(screen, 0)
423 if c then client.focus = c end
425 end)
427 -- Hook called every minute
428 awful.hooks.timer.register(60, function ()
429 mytextbox.text = os.date(" %a %b %d, %H:%M ")
430 end)
431 -- }}}