2008-05-20 15:39:47 +02:00
|
|
|
-- awesome 3 configuration file
|
|
|
|
|
|
|
|
-- Include awesome library, with lots of useful function!
|
|
|
|
require("awful")
|
2008-06-11 10:35:54 +02:00
|
|
|
require("tabulous")
|
2008-08-05 22:21:22 +02:00
|
|
|
require("beautiful")
|
|
|
|
|
2008-06-11 23:13:15 +02:00
|
|
|
-- {{{ Variable definitions
|
2008-08-06 15:15:13 +02:00
|
|
|
-- This is a file path to a theme file which will defines colors.
|
|
|
|
theme_path = "@AWESOME_THEMES_PATH@/default"
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
-- This is used later as the default terminal to run.
|
|
|
|
terminal = "xterm"
|
2008-06-11 23:13:15 +02:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
-- Default modkey.
|
|
|
|
-- Usually, Mod4 is the key with a logo between Control and Alt.
|
|
|
|
-- If you do not like this or do not have such a key,
|
|
|
|
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
|
|
|
-- However, you can use another modifier like Mod1, but it may interact with others.
|
|
|
|
modkey = "Mod4"
|
2008-06-11 23:13:15 +02:00
|
|
|
|
2008-05-24 13:55:49 +02:00
|
|
|
-- Table of layouts to cover with awful.layout.inc, order matters.
|
2008-06-11 23:13:15 +02:00
|
|
|
layouts =
|
|
|
|
{
|
|
|
|
"tile",
|
|
|
|
"tileleft",
|
|
|
|
"tilebottom",
|
|
|
|
"tiletop",
|
2008-09-11 00:04:52 +02:00
|
|
|
"fairh",
|
|
|
|
"fairv",
|
2008-06-11 23:13:15 +02:00
|
|
|
"magnifier",
|
|
|
|
"max",
|
2008-10-06 10:54:43 +02:00
|
|
|
"fullscreen",
|
2008-06-11 23:13:15 +02:00
|
|
|
"spiral",
|
|
|
|
"dwindle",
|
|
|
|
"floating"
|
|
|
|
}
|
|
|
|
|
2008-08-07 12:13:54 +02:00
|
|
|
-- Table of clients that should be set floating. The index may be either
|
|
|
|
-- the application class or instance. The instance is useful when running
|
|
|
|
-- a console app in a terminal like (Music on Console)
|
|
|
|
-- xterm -name mocp -e mocp
|
|
|
|
floatapps =
|
2008-06-25 13:49:27 +02:00
|
|
|
{
|
2008-08-07 12:13:54 +02:00
|
|
|
-- by class
|
|
|
|
["MPlayer"] = true,
|
|
|
|
["pinentry"] = true,
|
2008-08-12 10:54:21 +02:00
|
|
|
["gimp"] = true,
|
2008-08-07 12:13:54 +02:00
|
|
|
-- by instance
|
|
|
|
["mocp"] = true
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Applications to be moved to a pre-defined tag by class or instance.
|
2008-08-11 17:14:02 +02:00
|
|
|
-- Use the screen and tags indices.
|
2008-08-07 12:13:54 +02:00
|
|
|
apptags =
|
|
|
|
{
|
2008-08-07 14:06:34 +02:00
|
|
|
-- ["Firefox"] = { screen = 1, tag = 2 },
|
|
|
|
-- ["mocp"] = { screen = 2, tag = 4 },
|
2008-06-25 13:49:27 +02:00
|
|
|
}
|
|
|
|
|
2008-08-06 15:15:13 +02:00
|
|
|
-- Define if we want to use titlebar on all applications.
|
2008-08-08 16:50:55 +02:00
|
|
|
use_titlebar = false
|
2008-05-20 15:39:47 +02:00
|
|
|
-- }}}
|
|
|
|
|
2008-08-06 15:15:13 +02:00
|
|
|
-- {{{ Initialization
|
|
|
|
-- Initialize theme (colors).
|
|
|
|
beautiful.init(theme_path)
|
|
|
|
|
|
|
|
-- Register theme in awful.
|
|
|
|
-- This allows to not pass plenty of arguments to each function
|
|
|
|
-- to inform it about colors we want it to draw.
|
|
|
|
awful.beautiful.register(beautiful)
|
|
|
|
|
|
|
|
-- Uncomment this to activate autotabbing
|
|
|
|
-- tabulous.autotab_start()
|
|
|
|
-- }}}
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
-- {{{ Tags
|
2008-08-06 15:15:13 +02:00
|
|
|
-- Define tags table.
|
2008-06-09 21:43:09 +02:00
|
|
|
tags = {}
|
|
|
|
for s = 1, screen.count() do
|
2008-08-06 15:15:13 +02:00
|
|
|
-- Each screen has its own tag table.
|
2008-06-09 21:43:09 +02:00
|
|
|
tags[s] = {}
|
2008-08-06 15:15:13 +02:00
|
|
|
-- Create 9 tags per screen.
|
2008-06-09 21:43:09 +02:00
|
|
|
for tagnumber = 1, 9 do
|
2008-06-30 14:01:55 +02:00
|
|
|
tags[s][tagnumber] = tag({ name = tagnumber, layout = layouts[1] })
|
2008-06-09 21:43:09 +02:00
|
|
|
-- Add tags to screen one by one
|
2008-07-24 17:06:52 +02:00
|
|
|
tags[s][tagnumber].screen = s
|
2008-06-09 21:43:09 +02:00
|
|
|
end
|
|
|
|
-- I'm sure you want to see at least one tag.
|
2008-07-01 11:38:40 +02:00
|
|
|
tags[s][1].selected = true
|
2008-05-20 15:39:47 +02:00
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
-- {{{ Wibox
|
2008-05-20 15:39:47 +02:00
|
|
|
-- Create a textbox widget
|
2008-06-30 14:01:55 +02:00
|
|
|
mytextbox = widget({ type = "textbox", name = "mytextbox", align = "right" })
|
2008-05-20 15:39:47 +02:00
|
|
|
-- Set the default text in textbox
|
2008-09-05 01:29:38 +02:00
|
|
|
mytextbox.text = "<b><small> " .. AWESOME_RELEASE .. " </small></b>"
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-10-22 14:30:33 +02:00
|
|
|
-- Create a laucher widget and a main menu
|
|
|
|
myawesomemenu = {
|
2008-10-22 17:52:51 +02:00
|
|
|
{"manual", terminal .. " -e man awesome" },
|
2008-10-22 17:57:03 +02:00
|
|
|
{"edit config", terminal .. " -e " .. os.getenv("EDITOR") .. " " .. awful.util.getdir("config") .. "/rc.lua" },
|
2008-10-22 17:52:51 +02:00
|
|
|
{"restart", awesome.restart },
|
|
|
|
{"quit", awesome.quit }
|
2008-10-22 14:30:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
mymainmenu = {
|
|
|
|
{"awesome", myawesomemenu, "@AWESOME_ICON_PATH@/awesome16.png" },
|
2008-10-22 17:52:51 +02:00
|
|
|
{"open terminal", terminal }
|
2008-10-22 14:30:33 +02:00
|
|
|
}
|
|
|
|
|
2008-09-03 21:12:20 +02:00
|
|
|
mylauncher = awful.widget.launcher({ name = "mylauncher",
|
|
|
|
image = "@AWESOME_ICON_PATH@/awesome16.png",
|
2008-10-22 17:52:51 +02:00
|
|
|
menu = { "mymainmenu", mymainmenu } })
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-06-14 18:12:16 +02:00
|
|
|
-- Create a systray
|
2008-06-30 14:01:55 +02:00
|
|
|
mysystray = widget({ type = "systray", name = "mysystray", align = "right" })
|
2008-06-14 18:12:16 +02:00
|
|
|
|
2008-05-23 17:21:39 +02:00
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
-- Create a wibox for each screen and add it
|
|
|
|
mywibox = {}
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox = {}
|
2008-10-19 19:14:55 +02:00
|
|
|
mylayoutbox = {}
|
|
|
|
mytaglist = {}
|
|
|
|
mytaglist.buttons = { button({ }, 1, awful.tag.viewonly),
|
|
|
|
button({ modkey }, 1, awful.client.movetotag),
|
|
|
|
button({ }, 3, function (tag) tag.selected = not tag.selected end),
|
|
|
|
button({ modkey }, 3, awful.client.toggletag),
|
|
|
|
button({ }, 4, awful.tag.viewnext),
|
|
|
|
button({ }, 5, awful.tag.viewprev) }
|
|
|
|
mytasklist = {}
|
|
|
|
mytasklist.buttons = { button({ }, 1, function (c) client.focus = c; c:raise() end),
|
|
|
|
button({ }, 4, function () awful.client.focus.byidx(1) end),
|
|
|
|
button({ }, 5, function () awful.client.focus.byidx(-1) end) }
|
|
|
|
|
2008-05-27 16:07:17 +02:00
|
|
|
for s = 1, screen.count() do
|
2008-10-19 19:14:55 +02:00
|
|
|
-- Create a promptbox for each screen
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[s] = widget({ type = "textbox", name = "mypromptbox" .. s, align = "left" })
|
2008-10-19 19:14:55 +02:00
|
|
|
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
|
|
|
|
-- We need one layoutbox per screen.
|
|
|
|
mylayoutbox[s] = widget({ type = "imagebox", name = "mylayoutbox", align = "right" })
|
|
|
|
mylayoutbox[s]:buttons({ button({ }, 1, function () awful.layout.inc(layouts, 1) end),
|
|
|
|
button({ }, 3, function () awful.layout.inc(layouts, -1) end),
|
|
|
|
button({ }, 4, function () awful.layout.inc(layouts, 1) end),
|
|
|
|
button({ }, 5, function () awful.layout.inc(layouts, -1) end) })
|
|
|
|
-- Create a taglist widget
|
|
|
|
mytaglist[s] = awful.widget.taglist.new(s, awful.widget.taglist.label.all, mytaglist.buttons)
|
|
|
|
|
|
|
|
-- Create a tasklist widget
|
|
|
|
mytasklist[s] = awful.widget.tasklist.new(function(c)
|
|
|
|
return awful.widget.tasklist.label.currenttags(c, s)
|
|
|
|
end, mytasklist.buttons)
|
|
|
|
|
|
|
|
-- Create the wibox
|
|
|
|
mywibox[s] = wibox({ position = "top", name = "mywibox" .. s,
|
|
|
|
fg = beautiful.fg_normal, bg = beautiful.bg_normal })
|
2008-09-24 12:13:21 +02:00
|
|
|
-- Add widgets to the wibox - order matters
|
2008-10-19 19:14:55 +02:00
|
|
|
mywibox[s].widgets = { mytaglist[s],
|
|
|
|
mylauncher,
|
|
|
|
mytasklist[s],
|
|
|
|
mypromptbox[s],
|
|
|
|
mytextbox,
|
|
|
|
mylayoutbox[s],
|
|
|
|
s == 1 and mysystray or nil }
|
2008-09-24 12:13:21 +02:00
|
|
|
mywibox[s].screen = s
|
2008-05-20 15:39:47 +02:00
|
|
|
end
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
-- {{{ Mouse bindings
|
2008-08-12 13:23:10 +02:00
|
|
|
awesome.buttons({
|
2008-10-22 14:30:33 +02:00
|
|
|
button({ }, 3, function () awful.menu.new("mymainmenu", mymainmenu) end),
|
2008-08-12 13:23:10 +02:00
|
|
|
button({ }, 4, awful.tag.viewnext),
|
|
|
|
button({ }, 5, awful.tag.viewprev)
|
|
|
|
})
|
2008-05-20 15:39:47 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
-- {{{ Key bindings
|
|
|
|
|
|
|
|
-- Bind keyboard digits
|
|
|
|
-- Compute the maximum number of digit we need, limited to 9
|
2008-06-09 21:43:09 +02:00
|
|
|
keynumber = 0
|
|
|
|
for s = 1, screen.count() do
|
|
|
|
keynumber = math.min(9, math.max(#tags[s], keynumber));
|
|
|
|
end
|
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
for i = 1, keynumber do
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, i,
|
2008-05-28 12:15:00 +02:00
|
|
|
function ()
|
2008-07-02 09:14:17 +02:00
|
|
|
local screen = mouse.screen
|
2008-06-09 21:43:09 +02:00
|
|
|
if tags[screen][i] then
|
|
|
|
awful.tag.viewonly(tags[screen][i])
|
|
|
|
end
|
|
|
|
end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Control" }, i,
|
2008-06-09 21:43:09 +02:00
|
|
|
function ()
|
2008-07-02 09:14:17 +02:00
|
|
|
local screen = mouse.screen
|
2008-06-09 21:43:09 +02:00
|
|
|
if tags[screen][i] then
|
2008-07-01 11:38:40 +02:00
|
|
|
tags[screen][i].selected = not tags[screen][i].selected
|
2008-06-09 21:43:09 +02:00
|
|
|
end
|
2008-05-28 12:15:00 +02:00
|
|
|
end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Shift" }, i,
|
2008-05-28 12:15:00 +02:00
|
|
|
function ()
|
2008-09-05 15:57:21 +02:00
|
|
|
if client.focus then
|
|
|
|
if tags[client.focus.screen][i] then
|
|
|
|
awful.client.movetotag(tags[client.focus.screen][i])
|
2008-07-23 15:29:57 +02:00
|
|
|
end
|
2008-06-09 21:43:09 +02:00
|
|
|
end
|
|
|
|
end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Control", "Shift" }, i,
|
2008-06-09 21:43:09 +02:00
|
|
|
function ()
|
2008-09-05 15:57:21 +02:00
|
|
|
if client.focus then
|
|
|
|
if tags[client.focus.screen][i] then
|
|
|
|
awful.client.toggletag(tags[client.focus.screen][i])
|
2008-07-23 15:29:57 +02:00
|
|
|
end
|
2008-06-09 21:43:09 +02:00
|
|
|
end
|
2008-05-28 12:15:00 +02:00
|
|
|
end):add()
|
2008-05-20 15:39:47 +02:00
|
|
|
end
|
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "Left", awful.tag.viewprev):add()
|
|
|
|
keybinding({ modkey }, "Right", awful.tag.viewnext):add()
|
2008-07-30 15:37:05 +02:00
|
|
|
keybinding({ modkey }, "Escape", awful.tag.history.restore):add()
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
-- Standard program
|
2008-09-29 16:49:18 +02:00
|
|
|
keybinding({ modkey }, "Return", function () awful.util.spawn(terminal) end):add()
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-09-30 15:50:41 +02:00
|
|
|
keybinding({ modkey, "Control" }, "r", function ()
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[mouse.screen].text =
|
2008-09-30 15:50:41 +02:00
|
|
|
awful.util.escape(awful.util.restart())
|
|
|
|
end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "q", awesome.quit):add()
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
-- Client manipulation
|
2008-07-29 18:29:27 +02:00
|
|
|
keybinding({ modkey }, "m", awful.client.maximize):add()
|
2008-08-21 17:58:08 +02:00
|
|
|
keybinding({ modkey }, "f", function () client.focus.fullscreen = not client.focus.fullscreen end):add()
|
2008-08-12 12:08:20 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "c", function () client.focus:kill() end):add()
|
2008-09-29 16:49:18 +02:00
|
|
|
keybinding({ modkey }, "j", function () awful.client.focus.byidx(1); client.focus:raise() end):add()
|
|
|
|
keybinding({ modkey }, "k", function () awful.client.focus.byidx(-1); client.focus:raise() end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "j", function () awful.client.swap(1) end):add()
|
|
|
|
keybinding({ modkey, "Shift" }, "k", function () awful.client.swap(-1) end):add()
|
|
|
|
keybinding({ modkey, "Control" }, "j", function () awful.screen.focus(1) end):add()
|
|
|
|
keybinding({ modkey, "Control" }, "k", function () awful.screen.focus(-1) end):add()
|
|
|
|
keybinding({ modkey, "Control" }, "space", awful.client.togglefloating):add()
|
2008-08-12 12:08:20 +02:00
|
|
|
keybinding({ modkey, "Control" }, "Return", function () client.focus:swap(awful.client.master()) end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "o", awful.client.movetoscreen):add()
|
2008-07-31 22:33:18 +02:00
|
|
|
keybinding({ modkey }, "Tab", awful.client.focus.history.previous):add()
|
2008-08-18 10:39:34 +02:00
|
|
|
keybinding({ modkey }, "u", awful.client.urgent.jumpto):add()
|
2008-08-20 23:57:27 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "r", function () client.focus:redraw() end):add()
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
-- Layout manipulation
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "l", function () awful.tag.incmwfact(0.05) end):add()
|
|
|
|
keybinding({ modkey }, "h", function () awful.tag.incmwfact(-0.05) end):add()
|
|
|
|
keybinding({ modkey, "Shift" }, "h", function () awful.tag.incnmaster(1) end):add()
|
|
|
|
keybinding({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end):add()
|
|
|
|
keybinding({ modkey, "Control" }, "h", function () awful.tag.incncol(1) end):add()
|
|
|
|
keybinding({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end):add()
|
|
|
|
keybinding({ modkey }, "space", function () awful.layout.inc(layouts, 1) end):add()
|
|
|
|
keybinding({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end):add()
|
2008-06-10 10:18:56 +02:00
|
|
|
|
2008-06-25 09:07:57 +02:00
|
|
|
-- Prompt
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "F1", function ()
|
2008-10-13 11:28:36 +02:00
|
|
|
awful.prompt.run({ prompt = "Run: " }, mypromptbox[mouse.screen], awful.util.spawn, awful.completion.bash,
|
2008-10-22 17:57:03 +02:00
|
|
|
awful.util.getdir("cache") .. "/history") end):add()
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "F4", function ()
|
2008-10-13 11:28:36 +02:00
|
|
|
awful.prompt.run({ prompt = "Run Lua code: " }, mypromptbox[mouse.screen], awful.util.eval, awful.prompt.bash,
|
2008-10-22 17:57:03 +02:00
|
|
|
awful.util.getdir("cache") .. "/history_eval") end):add()
|
2008-08-12 18:13:51 +02:00
|
|
|
keybinding({ modkey, "Ctrl" }, "i", function ()
|
2008-10-13 11:28:36 +02:00
|
|
|
local s = mouse.screen
|
|
|
|
if mypromptbox[s].text then
|
|
|
|
mypromptbox[s].text = nil
|
2008-08-12 18:13:51 +02:00
|
|
|
else
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[s].text = nil
|
2008-08-28 11:29:21 +02:00
|
|
|
if client.focus.class then
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[s].text = "Class: " .. client.focus.class .. " "
|
2008-08-28 11:29:21 +02:00
|
|
|
end
|
|
|
|
if client.focus.instance then
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[s].text = mypromptbox[s].text .. "Instance: ".. client.focus.instance .. " "
|
2008-08-28 11:29:21 +02:00
|
|
|
end
|
|
|
|
if client.focus.role then
|
2008-10-13 11:28:36 +02:00
|
|
|
mypromptbox[s].text = mypromptbox[s].text .. "Role: ".. client.focus.role
|
2008-08-28 11:29:21 +02:00
|
|
|
end
|
2008-08-12 18:13:51 +02:00
|
|
|
end
|
|
|
|
end):add()
|
2008-06-11 08:52:07 +02:00
|
|
|
|
2008-06-11 10:35:54 +02:00
|
|
|
--- Tabulous, tab manipulation
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Control" }, "y", function ()
|
2008-06-11 10:35:54 +02:00
|
|
|
local tabbedview = tabulous.tabindex_get()
|
2008-06-11 11:11:12 +02:00
|
|
|
local nextclient = awful.client.next(1)
|
2008-06-11 10:35:54 +02:00
|
|
|
|
2008-08-04 16:44:22 +02:00
|
|
|
if not tabbedview then
|
2008-06-11 11:11:12 +02:00
|
|
|
tabbedview = tabulous.tabindex_get(nextclient)
|
|
|
|
|
2008-08-04 16:44:22 +02:00
|
|
|
if not tabbedview then
|
2008-06-11 11:11:12 +02:00
|
|
|
tabbedview = tabulous.tab_create()
|
|
|
|
tabulous.tab(tabbedview, nextclient)
|
|
|
|
else
|
2008-08-12 12:08:20 +02:00
|
|
|
tabulous.tab(tabbedview, client.focus)
|
2008-06-11 11:11:12 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
tabulous.tab(tabbedview, nextclient)
|
2008-06-11 10:35:54 +02:00
|
|
|
end
|
|
|
|
end):add()
|
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "y", tabulous.untab):add()
|
2008-06-11 10:35:54 +02:00
|
|
|
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "y", function ()
|
2008-06-11 10:35:54 +02:00
|
|
|
local tabbedview = tabulous.tabindex_get()
|
|
|
|
|
2008-08-04 16:44:22 +02:00
|
|
|
if tabbedview then
|
2008-06-11 10:35:54 +02:00
|
|
|
local n = tabulous.next(tabbedview)
|
|
|
|
tabulous.display(tabbedview, n)
|
|
|
|
end
|
|
|
|
end):add()
|
|
|
|
|
2008-06-11 08:52:07 +02:00
|
|
|
-- Client awful tagging: this is useful to tag some clients and then do stuff like move to tag on them
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey }, "t", awful.client.togglemarked):add()
|
|
|
|
keybinding({ modkey, 'Shift' }, "t", function ()
|
2008-06-11 10:35:54 +02:00
|
|
|
local tabbedview = tabulous.tabindex_get()
|
|
|
|
local clients = awful.client.getmarked()
|
|
|
|
|
2008-08-04 16:44:22 +02:00
|
|
|
if not tabbedview then
|
2008-06-11 10:35:54 +02:00
|
|
|
tabbedview = tabulous.tab_create(clients[1])
|
|
|
|
table.remove(clients, 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
for k,c in pairs(clients) do
|
|
|
|
tabulous.tab(tabbedview, c)
|
|
|
|
end
|
|
|
|
|
|
|
|
end):add()
|
|
|
|
|
2008-06-11 08:52:07 +02:00
|
|
|
for i = 1, keynumber do
|
2008-06-30 14:01:55 +02:00
|
|
|
keybinding({ modkey, "Shift" }, "F" .. i,
|
2008-06-11 08:52:07 +02:00
|
|
|
function ()
|
2008-07-02 09:14:17 +02:00
|
|
|
local screen = mouse.screen
|
2008-06-11 08:52:07 +02:00
|
|
|
if tags[screen][i] then
|
2008-06-11 10:35:54 +02:00
|
|
|
for k, c in pairs(awful.client.getmarked()) do
|
2008-06-11 08:52:07 +02:00
|
|
|
awful.client.movetotag(tags[screen][i], c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end):add()
|
|
|
|
end
|
2008-05-20 15:39:47 +02:00
|
|
|
-- }}}
|
|
|
|
|
|
|
|
-- {{{ Hooks
|
|
|
|
-- Hook function to execute when focusing a client.
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.focus.register(function (c)
|
2008-06-11 10:35:54 +02:00
|
|
|
if not awful.client.ismarked(c) then
|
2008-08-05 22:21:22 +02:00
|
|
|
c.border_color = beautiful.border_focus
|
2008-06-11 10:35:54 +02:00
|
|
|
end
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
-- Hook function to execute when unfocusing a client.
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.unfocus.register(function (c)
|
2008-06-11 10:35:54 +02:00
|
|
|
if not awful.client.ismarked(c) then
|
2008-08-05 22:21:22 +02:00
|
|
|
c.border_color = beautiful.border_normal
|
2008-06-11 10:35:54 +02:00
|
|
|
end
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-06-11 10:35:54 +02:00
|
|
|
|
|
|
|
-- Hook function to execute when marking a client
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.marked.register(function (c)
|
2008-08-05 22:21:22 +02:00
|
|
|
c.border_color = beautiful.border_marked
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-06-11 10:35:54 +02:00
|
|
|
|
|
|
|
-- Hook function to execute when unmarking a client
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.unmarked.register(function (c)
|
2008-08-05 22:21:22 +02:00
|
|
|
c.border_color = beautiful.border_focus
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-06-17 09:02:22 +02:00
|
|
|
-- Hook function to execute when the mouse is over a client.
|
2008-09-22 17:54:48 +02:00
|
|
|
awful.hooks.mouse_enter.register(function (c)
|
2008-05-27 22:18:19 +02:00
|
|
|
-- Sloppy focus, but disabled for magnifier layout
|
2008-09-08 00:09:50 +02:00
|
|
|
if awful.layout.get(c.screen) ~= "magnifier"
|
|
|
|
and awful.client.focus.filter(c) then
|
2008-08-12 12:08:20 +02:00
|
|
|
client.focus = c
|
2008-05-27 22:18:19 +02:00
|
|
|
end
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-20 15:39:47 +02:00
|
|
|
|
|
|
|
-- Hook function to execute when a new client appears.
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.manage.register(function (c)
|
2008-07-31 17:52:34 +02:00
|
|
|
if use_titlebar then
|
|
|
|
-- Add a titlebar
|
2008-08-06 15:15:13 +02:00
|
|
|
awful.titlebar.add(c, { modkey = modkey })
|
2008-07-31 17:52:34 +02:00
|
|
|
end
|
2008-06-13 15:35:47 +02:00
|
|
|
-- Add mouse bindings
|
2008-08-12 13:23:10 +02:00
|
|
|
c:buttons({
|
|
|
|
button({ }, 1, function (c) client.focus = c; c:raise() end),
|
|
|
|
button({ modkey }, 1, function (c) c:mouse_move() end),
|
|
|
|
button({ modkey }, 3, function (c) c:mouse_resize() end)
|
|
|
|
})
|
2008-05-23 23:08:37 +02:00
|
|
|
-- New client may not receive focus
|
|
|
|
-- if they're not focusable, so set border anyway.
|
2008-08-05 22:21:22 +02:00
|
|
|
c.border_width = beautiful.border_width
|
|
|
|
c.border_color = beautiful.border_normal
|
2008-08-12 12:08:20 +02:00
|
|
|
client.focus = c
|
2008-08-07 12:13:54 +02:00
|
|
|
|
|
|
|
-- Check if the application should be floating.
|
|
|
|
local cls = c.class
|
|
|
|
local inst = c.instance
|
|
|
|
if floatapps[cls] then
|
|
|
|
c.floating = floatapps[cls]
|
|
|
|
elseif floatapps[inst] then
|
|
|
|
c.floating = floatapps[inst]
|
2008-05-23 13:49:59 +02:00
|
|
|
end
|
2008-08-07 12:13:54 +02:00
|
|
|
|
|
|
|
-- Check application->screen/tag mappings.
|
|
|
|
local target
|
|
|
|
if apptags[cls] then
|
|
|
|
target = apptags[cls]
|
|
|
|
elseif apptags[inst] then
|
|
|
|
target = apptags[inst]
|
|
|
|
end
|
|
|
|
if target then
|
|
|
|
c.screen = target.screen
|
|
|
|
awful.client.movetotag(tags[target.screen][target.tag], c)
|
|
|
|
end
|
|
|
|
|
2008-09-10 17:04:54 +02:00
|
|
|
-- Set the windows at the slave,
|
|
|
|
-- i.e. put it at the end of others instead of setting it master.
|
|
|
|
-- awful.client.setslave(c)
|
|
|
|
|
2008-09-03 20:22:33 +02:00
|
|
|
-- Honor size hints: if you want to drop the gaps between windows, set this to false.
|
|
|
|
-- c.honorsizehints = false
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-20 15:39:47 +02:00
|
|
|
|
2008-05-23 17:21:39 +02:00
|
|
|
-- Hook function to execute when arranging the screen
|
2008-06-09 21:43:09 +02:00
|
|
|
-- (tag switch, new client, etc)
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.arrange.register(function (screen)
|
2008-08-11 18:20:00 +02:00
|
|
|
local layout = awful.layout.get(screen)
|
|
|
|
if layout then
|
2008-09-11 15:57:06 +02:00
|
|
|
mylayoutbox[screen].image = image("@AWESOME_ICON_PATH@/layouts/" .. layout .. "w.png")
|
|
|
|
else
|
|
|
|
mylayoutbox[screen].image = nil
|
2008-08-11 18:20:00 +02:00
|
|
|
end
|
2008-07-30 15:37:05 +02:00
|
|
|
|
2008-09-08 00:09:50 +02:00
|
|
|
-- Give focus to the latest client in history if no window has focus
|
|
|
|
-- or if the current window is a desktop or a dock one.
|
2008-08-12 12:08:20 +02:00
|
|
|
if not client.focus then
|
2008-07-31 22:33:18 +02:00
|
|
|
local c = awful.client.focus.history.get(screen, 0)
|
2008-08-12 12:08:20 +02:00
|
|
|
if c then client.focus = c end
|
2008-07-31 15:51:28 +02:00
|
|
|
end
|
|
|
|
|
2008-06-19 12:19:10 +02:00
|
|
|
-- Uncomment if you want mouse warping
|
|
|
|
--[[
|
2008-09-05 15:57:21 +02:00
|
|
|
if client.focus then
|
2008-10-21 15:32:42 +02:00
|
|
|
local c_c = client.focus:geometry()
|
2008-08-20 12:10:22 +02:00
|
|
|
local m_c = mouse.coords()
|
2008-06-19 12:19:10 +02:00
|
|
|
|
2008-06-19 16:55:37 +02:00
|
|
|
if m_c.x < c_c.x or m_c.x >= c_c.x + c_c.width or
|
|
|
|
m_c.y < c_c.y or m_c.y >= c_c.y + c_c.height then
|
|
|
|
if table.maxn(m_c.buttons) == 0 then
|
2008-08-20 12:10:22 +02:00
|
|
|
mouse.coords({ x = c_c.x + 5, y = c_c.y + 5})
|
2008-06-19 16:55:37 +02:00
|
|
|
end
|
2008-06-19 12:19:10 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
]]
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-23 17:21:39 +02:00
|
|
|
|
2008-05-31 15:57:22 +02:00
|
|
|
-- Hook called every second
|
2008-08-25 15:35:17 +02:00
|
|
|
awful.hooks.timer.register(1, function ()
|
2008-05-31 23:56:31 +02:00
|
|
|
-- For unix time_t lovers
|
2008-06-27 20:24:30 +02:00
|
|
|
mytextbox.text = " " .. os.time() .. " time_t "
|
2008-05-31 23:56:31 +02:00
|
|
|
-- Otherwise use:
|
2008-06-27 20:24:30 +02:00
|
|
|
-- mytextbox.text = " " .. os.date() .. " "
|
2008-08-25 15:35:17 +02:00
|
|
|
end)
|
2008-05-20 15:39:47 +02:00
|
|
|
-- }}}
|