All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 -- Standard awesome library
3 local gears = require("gears")
4 local awful = require("awful")
5 require("awful.autofocus")
6 -- Widget and layout library
7 local wibox = require("wibox")
8 -- Theme handling library
9 local beautiful = require("beautiful")
10 local xrdb = beautiful.xresources
11 -- Notification library
12 local naughty = require("naughty")
13 local menubar = require("menubar")
14 local hotkeys_popup = require("awful.hotkeys_popup").widget
15 -- Enable hotkeys help widget for VIM and other apps
16 -- when client with a matching name is opened:
17 require("awful.hotkeys_popup.keys")
19 -- Load Debian menu entries
20 local debian = require("debian.menu")
21 local has_fdo, freedesktop = pcall(require, "freedesktop")
23 local tblutils = require("tblutils")
24 local lain = require("lain")
25 local ccwidgets = require("cryptocoin_widgets")
26 local clocksarray = require("clocksarray")
30 -- Check if awesome encountered an error during startup and fell back to
31 -- another config (This code will only ever execute for the fallback config)
32 if awesome.startup_errors then
33 naughty.notify({ preset = naughty.config.presets.critical,
34 title = "Oops, there were errors during startup!",
35 text = awesome.startup_errors })
38 -- Handle runtime errors after startup
40 local in_error = false
41 awesome.connect_signal("debug::error", function (err)
42 -- Make sure we don't go into an endless error loop
43 if in_error then return end
46 naughty.notify({ preset = naughty.config.presets.critical,
47 title = "Oops, an error happened!",
48 text = tostring(err) })
54 -- {{{ Variable definitions
55 --xrdb.set_dpi(95, screen[1])
56 --xrdb.set_dpi(120, screen[2])
58 -- Themes define colours, icons, font and wallpapers.
59 beautiful.init(gears.filesystem.get_themes_dir() .. "default/theme.lua")
60 beautiful.font = 'Sans 10'
62 -- This is used later as the default terminal and editor to run.
63 terminal = "x-terminal-emulator"
64 editor = os.getenv("EDITOR") or "editor"
65 editor_cmd = terminal .. " -e " .. editor
68 -- Usually, Mod4 is the key with a logo between Control and Alt.
69 -- If you do not like this or do not have such a key,
70 -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
71 -- However, you can use another modifier like Mod1, but it may interact with others.
75 -- Table of layouts to cover with awful.layout.inc, order matters.
76 awful.layout.layouts = {
77 awful.layout.suit.floating,
78 awful.layout.suit.tile,
79 awful.layout.suit.tile.left,
80 awful.layout.suit.tile.bottom,
81 awful.layout.suit.tile.top,
82 awful.layout.suit.fair,
83 awful.layout.suit.fair.horizontal,
84 awful.layout.suit.spiral,
85 awful.layout.suit.spiral.dwindle,
86 awful.layout.suit.max,
87 awful.layout.suit.max.fullscreen,
88 awful.layout.suit.magnifier,
89 awful.layout.suit.corner.nw,
90 -- awful.layout.suit.corner.ne,
91 -- awful.layout.suit.corner.sw,
92 -- awful.layout.suit.corner.se,
95 layout_default = awful.layout.layouts[6]
96 layout_tiled = awful.layout.layouts[2]
97 layout_maximised = awful.layout.layouts[10]
98 layout_floating = awful.layout.layouts[1]
101 -- {{{ Helper functions
102 local function client_menu_toggle_fn()
106 if instance and instance.wibox.visible then
110 instance = awful.menu.clients({ theme = { width = 250 } })
115 local function set_wallpaper(s)
117 if beautiful.wallpaper then
118 local wallpaper = beautiful.wallpaper
119 -- If wallpaper is a function, call it with the screen
120 if type(wallpaper) == "function" then
121 wallpaper = wallpaper(s)
123 gears.wallpaper.maximized(wallpaper, s, true)
129 -- Create a launcher widget and a main menu
131 { "hotkeys", function() return false, hotkeys_popup.show_help end},
132 { "manual", terminal .. " -e man awesome" },
133 { "edit config", editor_cmd .. " " .. awesome.conffile },
134 { "restart", awesome.restart },
135 { "quit", function() awesome.quit() end}
138 local menu_awesome = { "awesome", myawesomemenu, beautiful.awesome_icon }
139 local menu_terminal = { "open terminal", terminal }
142 mymainmenu = freedesktop.menu.build({
143 before = { menu_awesome },
144 after = { menu_terminal }
147 mymainmenu = awful.menu({
150 { "Debian", debian.menu.Debian_menu.Debian },
157 mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
160 -- Menubar configuration
161 menubar.utils.terminal = terminal -- Set the terminal for applications that require it
165 local spacer = wibox.widget.textbox()
166 spacer:set_text(' │ ')
168 -- Keyboard map indicator and switcher
169 mykeyboardlayout = awful.widget.keyboardlayout()
171 local lain_bat = lain.widget.bat({
172 batteries = {"BAT0", "BAT1"},
173 settings = function()
175 if bat_now.status == "Charging" then delim = "↑"
176 elseif bat_now.status == "Unknown" then delim = "٭" end
177 widget:set_text(bat_now.perc .. "% " .. delim .. " " .. bat_now.time)
181 -- Create a textclock widget
182 clocksarray = clocksarray.get_clocksarray("%a %d %b %H:%M:%S %Z", {
183 ["NZ"] = "Pacific/Auckland",
184 ["DE"] = "Europe/Berlin"
187 -- Create a wibox for each screen and add it
188 local taglist_buttons = gears.table.join(
189 awful.button({ }, 1, function(t) t:view_only() end),
190 awful.button({ modkey }, 1, function(t)
192 client.focus:move_to_tag(t)
195 awful.button({ }, 3, awful.tag.viewtoggle),
196 awful.button({ modkey }, 3, function(t)
198 client.focus:toggle_tag(t)
201 awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
202 awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
205 local tasklist_buttons = gears.table.join(
206 awful.button({ }, 1, function (c)
207 if c == client.focus then
208 -- I don't like click-minimising
209 -- c.minimized = true
211 -- Without this, the following
212 -- :isvisible() makes no sense
214 if not c:isvisible() and c.first_tag then
215 c.first_tag:view_only()
217 -- This will also un-minimize
218 -- the client, if needed
223 awful.button({ }, 3, client_menu_toggle_fn()),
224 awful.button({ }, 4, function ()
225 awful.client.focus.byidx(1)
227 awful.button({ }, 5, function ()
228 awful.client.focus.byidx(-1)
232 -- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
233 screen.connect_signal("property::geometry", set_wallpaper)
238 tags.config["main"] = {
239 t1 = { layout = layout_default, selected = true },
240 t2 = { layout = layout_default },
241 t3 = { layout = layout_tiled },
242 t4 = { layout = layout_tiled },
243 t5 = { layout = layout_tiled },
244 t6 = { layout = layout_floating },
245 t7 = { layout = layout_maximised },
246 t8 = { layout = layout_maximised },
247 t9 = { layout = layout_maximised },
249 tags.config["aux"] = {
250 t1 = { layout = layout_default, selected = true },
251 t2 = { layout = layout_default },
252 t3 = { layout = layout_tiled },
253 t4 = { layout = layout_floating },
254 t5 = { layout = layout_floating },
255 t6 = { layout = layout_floating },
256 t7 = { layout = layout_floating },
257 t8 = { layout = layout_floating },
258 t9 = { layout = layout_maximised },
262 screentags[1] = tags.config["main"]
263 if screen.count() == 2 then -- aux screen is on the right
264 screentags[2] = tags.config["aux"]
265 elseif screen.count() == 3 then -- main screen is still #1 in the middle
266 screentags[2] = tags.config["aux"]
267 screentags[3] = tags.config["aux"]
270 awful.screen.connect_for_each_screen(function(s)
271 -- local fontsize = math.floor(250 * xrdb.get_dpi(s)/s.geometry.width)
272 -- beautiful.font = "Sans " .. tostring(fontsize)
274 if not tags[s.index] then
277 for n,p in tblutils.sorted_pairs(screentags[s.index]) do
279 n = string.sub(n, 2) -- remove leading 't' needed for syntax in table
280 table.insert(tags[s.index], awful.tag.add(n, p))
283 -- Create a promptbox for each screen
284 mypromptbox[s] = awful.widget.prompt()
285 -- Create an imagebox widget which will contains an icon indicating which layout we're using.
286 -- We need one layoutbox per screen.
287 mylayoutbox[s] = awful.widget.layoutbox(s)
288 mylayoutbox[s]:buttons(awful.util.table.join(
289 awful.button({ }, 1, function () awful.layout.inc( 1) end),
290 awful.button({ }, 3, function () awful.layout.inc(-1) end),
291 awful.button({ }, 4, function () awful.layout.inc( 1) end),
292 awful.button({ }, 5, function () awful.layout.inc(-1) end)))
293 -- Create a taglist widget
294 mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
296 -- Create a tasklist widget
297 mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
300 mywibox[s] = awful.wibar({ position = "top", screen = s })
302 -- Add widgets to the wibox
304 layout = wibox.layout.align.horizontal,
306 layout = wibox.layout.fixed.horizontal,
311 mytasklist[s], -- Middle widget
312 awful.util.table.join( -- Right widgets
314 layout = wibox.layout.fixed.horizontal,
316 wibox.widget.systray(),
317 ccwidgets.btc_widget,
319 ccwidgets.eth_widget,
333 -- {{{ Mouse bindings
334 root.buttons(gears.table.join(
335 awful.button({ }, 3, function () mymainmenu:toggle() end),
336 awful.button({ }, 4, awful.tag.viewnext),
337 awful.button({ }, 5, awful.tag.viewprev)
342 globalkeys = gears.table.join(
343 awful.key({ modkey, }, "s", hotkeys_popup.show_help,
344 {description="show help", group="awesome"}),
345 awful.key({ modkey, }, "Left", awful.tag.viewprev,
346 {description = "view previous", group = "tag"}),
347 awful.key({ modkey, }, "Right", awful.tag.viewnext,
348 {description = "view next", group = "tag"}),
349 awful.key({ modkey, }, "Escape", awful.tag.history.restore,
350 {description = "go back", group = "tag"}),
352 awful.key({ modkey, }, "k",
354 awful.client.focus.byidx( 1)
356 {description = "focus next by index", group = "client"}
358 awful.key({ modkey, }, "j",
360 awful.client.focus.byidx(-1)
362 {description = "focus previous by index", group = "client"}
364 awful.key({ modkey, }, "w", function () mymainmenu:show() end,
365 {description = "show main menu", group = "awesome"}),
367 -- Layout manipulation
368 awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( 1) end,
369 {description = "swap with next client by index", group = "client"}),
370 awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( -1) end,
371 {description = "swap with previous client by index", group = "client"}),
372 awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative( 1) end,
373 {description = "focus the next screen", group = "screen"}),
374 awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative(-1) end,
375 {description = "focus the previous screen", group = "screen"}),
376 awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
377 {description = "jump to urgent client", group = "client"}),
378 awful.key({ modkey, }, "Tab",
380 awful.client.focus.history.previous()
385 {description = "go back", group = "client"}),
388 awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end,
389 {description = "open a terminal", group = "launcher"}),
390 awful.key({ modkey, "Control" }, "r", awesome.restart,
391 {description = "reload awesome", group = "awesome"}),
392 awful.key({ modkey, "Shift" }, "q", awesome.quit,
393 {description = "quit awesome", group = "awesome"}),
395 awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end,
396 {description = "increase master width factor", group = "layout"}),
397 awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end,
398 {description = "decrease master width factor", group = "layout"}),
399 awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end,
400 {description = "increase the number of master clients", group = "layout"}),
401 awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end,
402 {description = "decrease the number of master clients", group = "layout"}),
403 awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end,
404 {description = "increase the number of columns", group = "layout"}),
405 awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end,
406 {description = "decrease the number of columns", group = "layout"}),
407 awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end,
408 {description = "select next", group = "layout"}),
409 awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end,
410 {description = "select previous", group = "layout"}),
412 awful.key({ modkey, "Control" }, "n",
414 local c = awful.client.restore()
415 -- Focus restored client
421 {description = "restore minimized", group = "client"}),
424 awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end,
425 {description = "run prompt", group = "launcher"}),
427 awful.key({ modkey }, "x",
430 prompt = "Run Lua code: ",
431 textbox = awful.screen.focused().mypromptbox.widget,
432 exe_callback = awful.util.eval,
433 history_path = awful.util.get_cache_dir() .. "/history_eval"
436 {description = "lua execute prompt", group = "awesome"}),
438 awful.key({ modkey }, "p", function() menubar.show() end,
439 {description = "show the menubar", group = "launcher"})
442 clientkeys = gears.table.join(
443 awful.key({ modkey, }, "f",
445 c.fullscreen = not c.fullscreen
448 {description = "toggle fullscreen", group = "client"}),
449 awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end,
450 {description = "close", group = "client"}),
451 awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ,
452 {description = "toggle floating", group = "client"}),
453 awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end,
454 {description = "move to master", group = "client"}),
455 awful.key({ modkey, }, "o", function (c) c:move_to_screen() end,
456 {description = "move to screen", group = "client"}),
457 awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end,
458 {description = "toggle keep on top", group = "client"}),
459 awful.key({ modkey, }, "n",
461 -- The client currently has the input focus, so it cannot be
462 -- minimized, since minimized clients can't have the focus.
465 {description = "minimize", group = "client"}),
466 awful.key({ modkey, }, "m",
468 c.maximized = not c.maximized
469 c.maximized_horizontal = false
470 c.maximized_vertical = false
473 {description = "(un)maximize", group = "client"}),
474 awful.key({ modkey, "Control" }, "m",
476 c.maximized_vertical = not c.maximized_vertical
479 {description = "(un)maximize vertically", group = "client"}),
480 awful.key({ modkey, "Shift" }, "m",
482 c.maximized_horizontal = not c.maximized_horizontal
485 {description = "(un)maximize horizontally", group = "client"})
488 -- Bind all key numbers to tags.
489 -- Be careful: we use keycodes to make it work on any keyboard layout.
490 -- This should map on the top row of your keyboard, usually 1 to 9.
492 globalkeys = gears.table.join(globalkeys,
494 awful.key({ modkey }, "#" .. i + 9,
496 local screen = awful.screen.focused()
497 local tag = screen.tags[i]
502 {description = "view tag #"..i, group = "tag"}),
503 -- Toggle tag display.
504 awful.key({ modkey, "Control" }, "#" .. i + 9,
506 local screen = awful.screen.focused()
507 local tag = screen.tags[i]
509 awful.tag.viewtoggle(tag)
512 {description = "toggle tag #" .. i, group = "tag"}),
513 -- Move client to tag.
514 awful.key({ modkey, "Shift" }, "#" .. i + 9,
517 local tag = client.focus.screen.tags[i]
519 client.focus:move_to_tag(tag)
523 {description = "move focused client to tag #"..i, group = "tag"}),
524 -- Toggle tag on focused client.
525 awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
528 local tag = client.focus.screen.tags[i]
530 client.focus:toggle_tag(tag)
534 {description = "toggle focused client on tag #" .. i, group = "tag"})
538 clientbuttons = gears.table.join(
539 awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
540 awful.button({ modkey }, 1, awful.mouse.client.move),
541 awful.button({ modkey }, 3, awful.mouse.client.resize))
544 globalkeys = awful.util.table.join(globalkeys,
545 awful.key({ cmdkey }, "n", function () awful.spawn("firefox") end),
546 awful.key({ cmdkey }, "m", function () awful.spawn("chromium --enable-remote-extensions") end),
547 awful.key({ cmdkey }, "y", function () awful.spawn(terminal .. " -e python") end),
548 awful.key({ cmdkey }, "c", function () awful.spawn("thunderbird") end),
549 awful.key({ cmdkey }, "r", function () mypromptbox[mouse.screen]:run() end),
550 awful.key({ cmdkey }, "g", function () awful.spawn("gscan2pdf") end),
551 awful.key({ cmdkey }, "v", function () awful.spawn("virt-manager") end),
552 awful.key({ cmdkey }, "l", function () awful.spawn("libreoffice") end),
553 awful.key({ cmdkey }, "f", function () awful.spawn("thunar") end),
554 awful.key({ cmdkey }, "i", function () awful.spawn(terminal .. " -name irc -e env MOSH_TITLE_NOPREFIX=true mosh -4 -- irc-host tmux new -As irc irssi") end),
555 awful.key({ cmdkey }, "x", function () awful.spawn.with_shell("/sbin/start-stop-daemon --start --background --exec /usr/bin/xscreensaver -- -no-capture-stderr; sleep 2; xscreensaver-command -lock") end),
556 awful.key({ cmdkey, "Shift" }, "x", function () awful.spawn("xscreensaver-command -exit") end),
559 awful.key(nil, "XF86ScreenSaver", function () awful.spawn("xset dpms force off") end),
560 awful.key(nil, "XF86AudioMute", function () awful.spawn("pactl set-sink-mute 0 toggle") end),
561 awful.key({ cmdkey }, "End", function () awful.spawn("pactl set-sink-mute 0 toggle") end),
562 awful.key(nil, "XF86AudioLowerVolume", function () awful.spawn("pactl set-sink-volume 0 -2%") end),
563 awful.key({ cmdkey }, "Next", function () awful.spawn("pactl set-sink-volume 0 -2%") end),
564 awful.key(nil, "XF86AudioRaiseVolume", function () awful.spawn("pactl set-sink-volume 0 +2%") end),
565 awful.key({ cmdkey }, "Prior", function () awful.spawn("pactl set-sink-volume 0 +2%") end),
566 awful.key(nil, "XF86AudioMicMute", function () awful.spawn("pactl set-source-mute 1 toggle") end),
567 awful.key({ cmdkey }, "Home", function () awful.spawn("pactl set-source-mute 1 toggle") end),
568 awful.key(nil, "XF86MonBrightnessDown", function () awful.spawn("xbacklight -dec 5%") end),
569 awful.key(nil, "XF86MonBrightnessUp", function () awful.spawn("xbacklight -inc 5%") end),
570 awful.key(nil, "XF86Display", function () awful.spawn("") end),
571 awful.key(nil, "XF86WLAN", function () awful.spawn("") end),
572 awful.key(nil, "XF86Tools", function () awful.spawn("") end),
573 awful.key(nil, "XF86Search", function () awful.spawn("") end),
574 awful.key(nil, "XF86LaunchA", function () awful.spawn("") end),
575 awful.key(nil, "XF86Explorer", function () awful.spawn("") end)
579 root.keys(globalkeys)
583 -- Rules to apply to new clients (through the "manage" signal).
585 local function move_to_tag(s, t)
587 c:move_to_tag(tags[s][t])
591 awful.rules.rules = {
592 -- All clients will match this rule.
594 properties = { border_width = beautiful.border_width,
595 border_color = beautiful.border_normal,
596 focus = awful.client.focus.filter,
599 buttons = clientbuttons,
600 screen = awful.screen.preferred,
601 placement = awful.placement.no_overlap+awful.placement.no_offscreen,
606 -- Add titlebars to normal clients and dialogs
607 --DISABLED-- { rule_any = {type = { "normal", "dialog" }
608 --DISABLED-- }, properties = { titlebars_enabled = true }
611 { rule = { type = "dialog" },
612 properties = { floating = true,
613 placement = awful.placement.centered
617 { rule = { class = "URxvt" },
620 size_hints_honor = false
622 { rule = { class = "URxvt", instance = "irc" },
626 callback = move_to_tag(screen.count(), screen.count() == 1 and 2 or 1)
628 { rule = { class = "Firefox", instance = "Navigator" },
632 callback = move_to_tag(screen.count() == 1 and 1 or 2, 9)
634 { rule = { class = "Firefox-esr", instance = "Navigator" },
638 callback = move_to_tag(screen.count() == 1 and 1 or 2, 9)
640 { rule = { class = "Thunderbird", instance = "Mail" },
644 callback = move_to_tag(screen.count() == 1 and 1 or 2, 8)
646 { rule = { class = "Chromium", instance = "chromium" },
650 callback = move_to_tag(screen.count() == 1 and 1 or 2, 9)
652 { rule = { class = "Gscan2pdf" },
656 callback = move_to_tag(1, 5)
658 { rule = { name = "gscan2pdf .*" },
663 { rule = { class = "Thunar", type = "normal" },
668 { rule = { class = "MuPDF", instance = "mupdf" },
673 { rule = { class = "Pinentry", instance = "pinentry" },
678 { rule = { class = "Gxmessage" },
687 -- Signal function to execute when a new client appears.
688 client.connect_signal("manage", function (c)
689 -- Set the windows at the slave,
690 -- i.e. put it at the end of others instead of setting it master.
691 if not awesome.startup then awful.client.setslave(c) end
693 if awesome.startup and
694 not c.size_hints.user_position
695 and not c.size_hints.program_position then
696 -- Prevent clients from being unreachable after screen count changes.
697 awful.placement.no_offscreen(c)
700 c.maximized_horizontal = false
701 c.maximized_vertical = false
704 -- Add a titlebar if titlebars_enabled is set to true in the rules.
705 client.connect_signal("request::titlebars", function(c)
706 -- buttons for the titlebar
707 local buttons = gears.table.join(
708 awful.button({ }, 1, function()
711 awful.mouse.client.move(c)
713 awful.button({ }, 3, function()
716 awful.mouse.client.resize(c)
720 awful.titlebar(c) : setup {
722 awful.titlebar.widget.iconwidget(c),
724 layout = wibox.layout.fixed.horizontal
729 widget = awful.titlebar.widget.titlewidget(c)
732 layout = wibox.layout.flex.horizontal
735 awful.titlebar.widget.floatingbutton (c),
736 awful.titlebar.widget.maximizedbutton(c),
737 awful.titlebar.widget.stickybutton (c),
738 awful.titlebar.widget.ontopbutton (c),
739 awful.titlebar.widget.closebutton (c),
740 layout = wibox.layout.fixed.horizontal()
742 layout = wibox.layout.align.horizontal
746 -- Enable sloppy focus, so that focus follows mouse.
747 client.connect_signal("mouse::enter", function(c)
748 if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
749 and awful.client.focus.filter(c) then
754 client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
755 client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
757 awful.ewmh.add_activate_filter(function(c, context, hints)
758 if context == "ewmh" and (c.class == "Firefox-esr" or c.class == "Firefox") then return false end
761 -- vim:ft=lua:sw=4:sts=4:ts=4:et