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