Naughty: Port to new widget system
[awesome.git] / awesomerc.lua.in
blob0c7b84da46276c9e0b8cc312d09bed9d091d1f5c
1 -- Standard awesome library
2 require("awful")
3 require("awful.autofocus")
4 require("awful.rules")
5 -- Theme handling library
6 require("beautiful")
7 -- Notification library
8 require("naughty")
10 -- {{{ Variable definitions
11 -- Themes define colours, icons, and wallpapers
12 beautiful.init("@AWESOME_THEMES_PATH@/default/theme.lua")
14 -- This is used later as the default terminal and editor to run.
15 terminal = "xterm"
16 editor = os.getenv("EDITOR") or "nano"
17 editor_cmd = terminal .. " -e " .. editor
19 -- Default modkey.
20 -- Usually, Mod4 is the key with a logo between Control and Alt.
21 -- If you do not like this or do not have such a key,
22 -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
23 -- However, you can use another modifier like Mod1, but it may interact with others.
24 modkey = "Mod4"
26 -- Table of layouts to cover with awful.layout.inc, order matters.
27 layouts =
29 awful.layout.suit.floating,
30 awful.layout.suit.tile,
31 awful.layout.suit.tile.left,
32 awful.layout.suit.tile.bottom,
33 awful.layout.suit.tile.top,
34 awful.layout.suit.fair,
35 awful.layout.suit.fair.horizontal,
36 awful.layout.suit.spiral,
37 awful.layout.suit.spiral.dwindle,
38 awful.layout.suit.max,
39 awful.layout.suit.max.fullscreen,
40 awful.layout.suit.magnifier
42 -- }}}
44 -- {{{ Tags
45 -- Define a tag table which hold all screen tags.
46 tags = {}
47 for s = 1, screen.count() do
48 -- Each screen has its own tag table.
49 tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
50 end
51 -- }}}
53 -- {{{ Menu
54 -- Create a laucher widget and a main menu
55 myawesomemenu = {
56 { "manual", terminal .. " -e man awesome" },
57 { "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
58 { "restart", awesome.restart },
59 { "quit", awesome.quit }
62 mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
63 { "open terminal", terminal }
67 mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
68 menu = mymainmenu })
69 -- }}}
71 -- {{{ Wibox
72 -- Create a textclock widget
73 mytextclock = awful.widget.textclock({ align = "right" })
75 -- Create a systray
76 mysystray = widget({ type = "systray" })
78 -- Create a wibox for each screen and add it
79 mywibox = {}
80 mypromptbox = {}
81 mylayoutbox = {}
82 mytaglist = {}
83 mytaglist.buttons = awful.util.table.join(
84 awful.button({ }, 1, awful.tag.viewonly),
85 awful.button({ modkey }, 1, awful.client.movetotag),
86 awful.button({ }, 3, awful.tag.viewtoggle),
87 awful.button({ modkey }, 3, awful.client.toggletag),
88 awful.button({ }, 4, awful.tag.viewnext),
89 awful.button({ }, 5, awful.tag.viewprev)
91 mytasklist = {}
92 mytasklist.buttons = awful.util.table.join(
93 awful.button({ }, 1, function (c)
94 if not c:isvisible() then
95 awful.tag.viewonly(c:tags()[1])
96 end
97 client.focus = c
98 c:raise()
99 end),
100 awful.button({ }, 3, function ()
101 if instance then
102 instance:hide()
103 instance = nil
104 else
105 instance = awful.menu.clients({ width=250 })
107 end),
108 awful.button({ }, 4, function ()
109 awful.client.focus.byidx(1)
110 if client.focus then client.focus:raise() end
111 end),
112 awful.button({ }, 5, function ()
113 awful.client.focus.byidx(-1)
114 if client.focus then client.focus:raise() end
115 end))
117 for s = 1, screen.count() do
118 -- Create a promptbox for each screen
119 mypromptbox[s] = awful.widget.prompt()
120 -- Create an imagebox widget which will contains an icon indicating which layout we're using.
121 -- We need one layoutbox per screen.
122 mylayoutbox[s] = awful.widget.layoutbox(s)
123 mylayoutbox[s]:buttons(awful.util.table.join(
124 awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
125 awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
126 awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
127 awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
128 -- Create a taglist widget
129 mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
131 -- Create a tasklist widget
132 mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
134 -- Create the wibox
135 mywibox[s] = awful.wibox({ position = "top", screen = s })
137 -- Create a table with widgets that go to the right
138 right_aligned = {
139 layout = awful.widget.layout.horizontal.rightleft
141 if s == 1 then table.insert(right_aligned, mysystray) end
142 table.insert(right_aligned, mytextclock)
143 table.insert(right_aligned, mylayoutbox[s])
145 -- Add widgets to the wibox - order matters
146 mywibox[s].widgets = {
147 mylauncher,
148 mytaglist[s],
149 mypromptbox[s],
150 right_aligned,
151 mytasklist[s],
152 layout = awful.widget.layout.horizontal.leftright,
153 height = mywibox[s].height
156 -- }}}
158 -- {{{ Mouse bindings
159 root.buttons(awful.util.table.join(
160 awful.button({ }, 3, function () mymainmenu:toggle() end),
161 awful.button({ }, 4, awful.tag.viewnext),
162 awful.button({ }, 5, awful.tag.viewprev)
164 -- }}}
166 -- {{{ Key bindings
167 globalkeys = awful.util.table.join(
168 awful.key({ modkey, }, "Left", awful.tag.viewprev ),
169 awful.key({ modkey, }, "Right", awful.tag.viewnext ),
170 awful.key({ modkey, }, "Escape", awful.tag.history.restore),
172 awful.key({ modkey, }, "j",
173 function ()
174 awful.client.focus.byidx( 1)
175 if client.focus then client.focus:raise() end
176 end),
177 awful.key({ modkey, }, "k",
178 function ()
179 awful.client.focus.byidx(-1)
180 if client.focus then client.focus:raise() end
181 end),
182 awful.key({ modkey, }, "w", function () mymainmenu:show({keygrabber=true}) end),
184 -- Layout manipulation
185 awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
186 awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
187 awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
188 awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
189 awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
190 awful.key({ modkey, }, "Tab",
191 function ()
192 awful.client.focus.history.previous()
193 if client.focus then
194 client.focus:raise()
196 end),
198 -- Standard program
199 awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
200 awful.key({ modkey, "Control" }, "r", awesome.restart),
201 awful.key({ modkey, "Shift" }, "q", awesome.quit),
203 awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
204 awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
205 awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
206 awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
207 awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
208 awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
209 awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
210 awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
212 -- Prompt
213 awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
215 awful.key({ modkey }, "x",
216 function ()
217 awful.prompt.run({ prompt = "Run Lua code: " },
218 mypromptbox[mouse.screen].widget,
219 awful.util.eval, nil,
220 awful.util.getdir("cache") .. "/history_eval")
221 end)
224 clientkeys = awful.util.table.join(
225 awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
226 awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
227 awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
228 awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
229 awful.key({ modkey, }, "o", awful.client.movetoscreen ),
230 awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
231 awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
232 awful.key({ modkey, }, "m",
233 function (c)
234 c.maximized_horizontal = not c.maximized_horizontal
235 c.maximized_vertical = not c.maximized_vertical
236 end)
239 -- Compute the maximum number of digit we need, limited to 9
240 keynumber = 0
241 for s = 1, screen.count() do
242 keynumber = math.min(9, math.max(#tags[s], keynumber));
245 -- Bind all key numbers to tags.
246 -- Be careful: we use keycodes to make it works on any keyboard layout.
247 -- This should map on the top row of your keyboard, usually 1 to 9.
248 for i = 1, keynumber do
249 globalkeys = awful.util.table.join(globalkeys,
250 awful.key({ modkey }, "#" .. i + 9,
251 function ()
252 local screen = mouse.screen
253 if tags[screen][i] then
254 awful.tag.viewonly(tags[screen][i])
256 end),
257 awful.key({ modkey, "Control" }, "#" .. i + 9,
258 function ()
259 local screen = mouse.screen
260 if tags[screen][i] then
261 awful.tag.viewtoggle(tags[screen][i])
263 end),
264 awful.key({ modkey, "Shift" }, "#" .. i + 9,
265 function ()
266 if client.focus and tags[client.focus.screen][i] then
267 awful.client.movetotag(tags[client.focus.screen][i])
269 end),
270 awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
271 function ()
272 if client.focus and tags[client.focus.screen][i] then
273 awful.client.toggletag(tags[client.focus.screen][i])
275 end))
278 clientbuttons = awful.util.table.join(
279 awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
280 awful.button({ modkey }, 1, awful.mouse.client.move),
281 awful.button({ modkey }, 3, awful.mouse.client.resize))
283 -- Set keys
284 root.keys(globalkeys)
285 -- }}}
287 -- {{{ Rules
288 awful.rules.rules = {
289 -- All clients will match this rule.
290 { rule = { },
291 properties = { border_width = beautiful.border_width,
292 border_color = beautiful.border_normal,
293 focus = true,
294 keys = clientkeys,
295 buttons = clientbuttons } },
296 { rule = { class = "MPlayer" },
297 properties = { floating = true } },
298 { rule = { class = "pinentry" },
299 properties = { floating = true } },
300 { rule = { class = "gimp" },
301 properties = { floating = true } },
302 -- Set Firefox to always map on tags number 2 of screen 1.
303 -- { rule = { class = "Firefox" },
304 -- properties = { tag = tags[1][2] } },
306 -- }}}
308 -- {{{ Signals
309 -- Signal function to execute when a new client appears.
310 client.connect_signal("manage", function (c, startup)
311 -- Enable sloppy focus
312 c:connect_signal("mouse::enter", function(c)
313 if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
314 and awful.client.focus.filter(c) then
315 client.focus = c
317 end)
319 if not startup then
320 -- Set the windows at the slave,
321 -- i.e. put it at the end of others instead of setting it master.
322 -- awful.client.setslave(c)
324 -- Put windows in a smart way, only if they does not set an initial position.
325 if not c.size_hints.user_position and not c.size_hints.program_position then
326 awful.placement.no_overlap(c)
327 awful.placement.no_offscreen(c)
330 end)
332 client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
333 client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
334 -- }}}