|
@@ -1,483 +0,0 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-require("awful")
|
|
|
-require("awful.autofocus")
|
|
|
-require("awful.rules")
|
|
|
|
|
|
-require("beautiful")
|
|
|
|
|
|
-require("naughty")
|
|
|
|
|
|
-require("debian.menu")
|
|
|
|
|
|
-require("wicked")
|
|
|
-require("vicious")
|
|
|
|
|
|
-require("helpers")
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
-if awesome.startup_errors then
|
|
|
- naughty.notify({ preset = naughty.config.presets.critical,
|
|
|
- title = "Oops, there were errors during startup!",
|
|
|
- text = awesome.startup_errors })
|
|
|
-end
|
|
|
-
|
|
|
|
|
|
-do
|
|
|
- local in_error = false
|
|
|
- awesome.add_signal("debug::error", function (err)
|
|
|
-
|
|
|
- if in_error then return end
|
|
|
- in_error = true
|
|
|
-
|
|
|
- naughty.notify({ preset = naughty.config.presets.critical,
|
|
|
- title = "Oops, an error happened!",
|
|
|
- text = err })
|
|
|
- in_error = false
|
|
|
- end)
|
|
|
-end
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-beautiful.init("/usr/share/awesome/themes/default/theme.lua")
|
|
|
-
|
|
|
|
|
|
-terminal = whereis('xterm') or 'x-terminal-emulator'
|
|
|
-editor = os.getenv('EDITOR') or 'sensible-editor'
|
|
|
-editor_cmd = terminal .. ' -e ' .. editor
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-modkey = "Mod1"
|
|
|
-
|
|
|
|
|
|
-layouts =
|
|
|
-{
|
|
|
- awful.layout.suit.floating,
|
|
|
- awful.layout.suit.tile,
|
|
|
- awful.layout.suit.tile.left,
|
|
|
- awful.layout.suit.tile.bottom,
|
|
|
- awful.layout.suit.tile.top,
|
|
|
- awful.layout.suit.fair,
|
|
|
- awful.layout.suit.fair.horizontal,
|
|
|
- awful.layout.suit.spiral,
|
|
|
- awful.layout.suit.spiral.dwindle,
|
|
|
- awful.layout.suit.max,
|
|
|
- awful.layout.suit.max.fullscreen,
|
|
|
- awful.layout.suit.magnifier
|
|
|
-}
|
|
|
-
|
|
|
|
|
|
-mycurrenttag = 1
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-tags = {}
|
|
|
-for s = 1, screen.count() do
|
|
|
-
|
|
|
- tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
|
|
|
-end
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-myawesomemenu = {
|
|
|
- { "manual", terminal .. " -e man awesome" },
|
|
|
- { "edit config", editor_cmd .. " " .. awesome.conffile },
|
|
|
- { "restart", awesome.restart },
|
|
|
- { "quit", awesome.quit }
|
|
|
-}
|
|
|
-
|
|
|
-mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
|
|
|
- { "Debian", debian.menu.Debian_menu.Debian },
|
|
|
- { "open terminal", terminal }
|
|
|
- }
|
|
|
- })
|
|
|
-
|
|
|
-mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
|
|
|
- menu = mymainmenu })
|
|
|
|
|
|
-
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
-volwidget = widget({
|
|
|
- align = right,
|
|
|
- type = "textbox"
|
|
|
-})
|
|
|
-vicious.register(volwidget, vicious.widgets.volume, ' ♬:$1٪', 5, 'Master')
|
|
|
|
|
|
-
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-mytextclock = awful.widget.textclock(
|
|
|
- { align = "right" },
|
|
|
- "%a %d, %H:%M",
|
|
|
- 60
|
|
|
-)
|
|
|
-
|
|
|
|
|
|
-mysystray = widget({ type = "systray" })
|
|
|
-
|
|
|
|
|
|
-mywibox = {}
|
|
|
-mypromptbox = {}
|
|
|
-mylayoutbox = {}
|
|
|
-mytaglist = {}
|
|
|
-mytaglist.buttons = awful.util.table.join(
|
|
|
- awful.button({ }, 1, awful.tag.viewonly),
|
|
|
- awful.button({ modkey }, 1, awful.client.movetotag),
|
|
|
- awful.button({ }, 3, awful.tag.viewtoggle),
|
|
|
- awful.button({ modkey }, 3, awful.client.toggletag),
|
|
|
- awful.button({ }, 4, awful.tag.viewnext),
|
|
|
- awful.button({ }, 5, awful.tag.viewprev)
|
|
|
- )
|
|
|
-mytasklist = {}
|
|
|
-mytasklist.buttons = awful.util.table.join(
|
|
|
- awful.button({ }, 1, function (c)
|
|
|
- if c == client.focus then
|
|
|
- c.minimized = true
|
|
|
- else
|
|
|
- if not c:isvisible() then
|
|
|
- awful.tag.viewonly(c:tags()[1])
|
|
|
- end
|
|
|
-
|
|
|
-
|
|
|
- client.focus = c
|
|
|
- c:raise()
|
|
|
- end
|
|
|
- end),
|
|
|
- awful.button({ }, 3, function ()
|
|
|
- if instance then
|
|
|
- instance:hide()
|
|
|
- instance = nil
|
|
|
- else
|
|
|
- instance = awful.menu.clients({ width=250 })
|
|
|
- end
|
|
|
- end),
|
|
|
- awful.button({ }, 4, function ()
|
|
|
- awful.client.focus.byidx(1)
|
|
|
- if client.focus then client.focus:raise() end
|
|
|
- end),
|
|
|
- awful.button({ }, 5, function ()
|
|
|
- awful.client.focus.byidx(-1)
|
|
|
- if client.focus then client.focus:raise() end
|
|
|
- end)
|
|
|
-)
|
|
|
-
|
|
|
-for s = 1, screen.count() do
|
|
|
-
|
|
|
- mypromptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright })
|
|
|
-
|
|
|
-
|
|
|
- mylayoutbox[s] = awful.widget.layoutbox(s)
|
|
|
- mylayoutbox[s]:buttons(awful.util.table.join(
|
|
|
- awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
|
|
|
- awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
|
|
|
- awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
|
|
|
- awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)
|
|
|
- ))
|
|
|
-
|
|
|
- mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, mytaglist.buttons)
|
|
|
-
|
|
|
-
|
|
|
- mytasklist[s] = awful.widget.tasklist(function(c)
|
|
|
- return awful.widget.tasklist.label.currenttags(c, s)
|
|
|
- end, mytasklist.buttons)
|
|
|
-
|
|
|
-
|
|
|
- mywibox[s] = awful.wibox({ position = "top", screen = s })
|
|
|
-
|
|
|
- mywibox[s].widgets = {
|
|
|
- {
|
|
|
- mylauncher,
|
|
|
- mytaglist[s],
|
|
|
- mypromptbox[s],
|
|
|
- layout = awful.widget.layout.horizontal.leftright
|
|
|
- },
|
|
|
- mylayoutbox[s],
|
|
|
- volwidget,
|
|
|
- mytextclock,
|
|
|
- s == 1 and mysystray or nil,
|
|
|
- mytasklist[s],
|
|
|
- layout = awful.widget.layout.horizontal.rightleft
|
|
|
- }
|
|
|
-end
|
|
|
|
|
|
-
|
|
|
|
|
|
-root.buttons(awful.util.table.join(
|
|
|
- awful.button({ }, 3, function () mymainmenu:toggle() end),
|
|
|
- awful.button({ }, 4, awful.tag.viewnext),
|
|
|
- awful.button({ }, 5, awful.tag.viewprev)
|
|
|
-))
|
|
|
|
|
|
-
|
|
|
|
|
|
-globalkeys = awful.util.table.join(
|
|
|
- awful.key({ modkey, }, "Left", awful.tag.viewprev ),
|
|
|
- awful.key({ modkey, }, "Right", awful.tag.viewnext ),
|
|
|
- awful.key({ modkey, }, "Escape", awful.tag.history.restore),
|
|
|
-
|
|
|
- awful.key({ modkey, }, "j",
|
|
|
- function ()
|
|
|
- awful.client.focus.byidx( 1)
|
|
|
- if client.focus then client.focus:raise() end
|
|
|
- end),
|
|
|
- awful.key({ modkey, }, "k",
|
|
|
- function ()
|
|
|
- awful.client.focus.byidx(-1)
|
|
|
- if client.focus then client.focus:raise() end
|
|
|
- end),
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
|
|
|
- awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
|
|
|
- awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
|
|
|
- awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
|
|
|
- awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
|
|
|
- awful.key({ modkey, }, "Tab",
|
|
|
- function ()
|
|
|
- awful.client.focus.history.previous()
|
|
|
- if client.focus then
|
|
|
- client.focus:raise()
|
|
|
- end
|
|
|
- end),
|
|
|
-
|
|
|
-
|
|
|
- awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
|
|
|
- awful.key({ modkey, "Control" }, "r", awesome.restart),
|
|
|
- awful.key({ modkey, "Shift" }, "q", awesome.quit),
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- awful.key({ modkey, "Control" }, "n", awful.client.restore),
|
|
|
-
|
|
|
-
|
|
|
- awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
|
|
|
-
|
|
|
- awful.key({ modkey }, "x",
|
|
|
- function ()
|
|
|
- awful.prompt.run({ prompt = "Run Lua code: " },
|
|
|
- mypromptbox[mouse.screen].widget,
|
|
|
- awful.util.eval, nil,
|
|
|
- awful.util.getdir("cache") .. "/history_eval")
|
|
|
- end),
|
|
|
-
|
|
|
-
|
|
|
- awful.key({ modkey, "Control"}, "l", function() awful.util.spawn("xscreensaver-command -lock") end),
|
|
|
-
|
|
|
- awful.key({ modkey }, "space", function()
|
|
|
- local curtag = awful.tag.getidx(awful.tag.selected(mouse.screen))
|
|
|
- local lasttag = table.getn(tags[mouse.screen])
|
|
|
- if not (curtag == lasttag) then
|
|
|
- mycurrenttag = curtag
|
|
|
- awful.tag.viewonly(tags[mouse.screen][lasttag])
|
|
|
- else
|
|
|
- awful.tag.viewonly(tags[mouse.screen][mycurrenttag])
|
|
|
- end
|
|
|
- end)
|
|
|
-)
|
|
|
-
|
|
|
|
|
|
-for i = 1, table.getn(tags[mouse.screen]) do
|
|
|
- globalkeys = awful.util.table.join(
|
|
|
- globalkeys,
|
|
|
-
|
|
|
- awful.key({ "Control"}, 'F' .. i, function()
|
|
|
- awful.tag.viewonly(tags[mouse.screen][i])
|
|
|
- mycurrenttag = i
|
|
|
- end),
|
|
|
-
|
|
|
- awful.key({ "Control", "Shift" }, 'F' .. i,
|
|
|
- function ()
|
|
|
- if client.focus and tags[client.focus.screen][i] then
|
|
|
- awful.client.movetotag(tags[client.focus.screen][i])
|
|
|
- end
|
|
|
- end)
|
|
|
- )
|
|
|
-end
|
|
|
-
|
|
|
-clientkeys = awful.util.table.join(
|
|
|
- awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
|
|
|
- awful.key({ modkey, }, "c", function (c) c:kill() end),
|
|
|
- awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
|
|
|
- awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
|
|
|
- awful.key({ modkey, }, "o", awful.client.movetoscreen ),
|
|
|
- awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
|
|
|
- awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
|
|
|
- awful.key({ modkey, }, "n",
|
|
|
- function (c)
|
|
|
-
|
|
|
-
|
|
|
- c.minimized = true
|
|
|
- end),
|
|
|
- awful.key({ modkey, }, "m",
|
|
|
- function (c)
|
|
|
- c.maximized_horizontal = not c.maximized_horizontal
|
|
|
- c.maximized_vertical = not c.maximized_vertical
|
|
|
- end)
|
|
|
-)
|
|
|
-
|
|
|
|
|
|
-keynumber = 0
|
|
|
-for s = 1, screen.count() do
|
|
|
- keynumber = math.min(9, math.max(#tags[s], keynumber));
|
|
|
-end
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
|
-for i = 1, keynumber do
|
|
|
- globalkeys = awful.util.table.join(globalkeys,
|
|
|
- awful.key({ modkey }, "#" .. i + 9,
|
|
|
- function ()
|
|
|
- local screen = mouse.screen
|
|
|
- if tags[screen][i] then
|
|
|
- awful.tag.viewonly(tags[screen][i])
|
|
|
- end
|
|
|
- end),
|
|
|
- awful.key({ modkey, "Control" }, "#" .. i + 9,
|
|
|
- function ()
|
|
|
- local screen = mouse.screen
|
|
|
- if tags[screen][i] then
|
|
|
- awful.tag.viewtoggle(tags[screen][i])
|
|
|
- end
|
|
|
- end),
|
|
|
- awful.key({ modkey, "Shift" }, "#" .. i + 9,
|
|
|
- function ()
|
|
|
- if client.focus and tags[client.focus.screen][i] then
|
|
|
- awful.client.movetotag(tags[client.focus.screen][i])
|
|
|
- end
|
|
|
- end),
|
|
|
- awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
|
|
|
- function ()
|
|
|
- if client.focus and tags[client.focus.screen][i] then
|
|
|
- awful.client.toggletag(tags[client.focus.screen][i])
|
|
|
- end
|
|
|
- end))
|
|
|
-end
|
|
|
-
|
|
|
-clientbuttons = awful.util.table.join(
|
|
|
- awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
|
|
|
- awful.button({ modkey }, 1, awful.mouse.client.move),
|
|
|
- awful.button({ modkey }, 3, awful.mouse.client.resize))
|
|
|
-
|
|
|
|
|
|
-root.keys(globalkeys)
|
|
|
|
|
|
-
|
|
|
|
|
|
-awful.rules.rules = {
|
|
|
-
|
|
|
- { rule = { },
|
|
|
- properties = { border_width = beautiful.border_width,
|
|
|
- border_color = beautiful.border_normal,
|
|
|
- focus = true,
|
|
|
- keys = clientkeys,
|
|
|
- buttons = clientbuttons } },
|
|
|
- { rule = { class = "MPlayer" }, properties = { floating = true } },
|
|
|
- { rule = { class = "pinentry" }, properties = { floating = true } },
|
|
|
- { rule = { class = "gimp" }, properties = { floating = true } },
|
|
|
- { rule = { class = "pidgin" }, properties = { floating = true } },
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-}
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
-client.add_signal("manage", function (c, startup)
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- c:add_signal("mouse::enter", function(c)
|
|
|
- if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
|
|
|
- and awful.client.focus.filter(c) then
|
|
|
- client.focus = c
|
|
|
- end
|
|
|
- end)
|
|
|
-
|
|
|
- if not startup then
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- if not c.size_hints.user_position and not c.size_hints.program_position then
|
|
|
- awful.placement.no_overlap(c)
|
|
|
- awful.placement.no_offscreen(c)
|
|
|
- end
|
|
|
- end
|
|
|
-end)
|
|
|
-
|
|
|
-client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
|
|
|
-client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
|
|
|
|
|
|
-
|
|
|
|
|
|
-runonce('xscreensaver -no-splash')
|
|
|
-runonce('clipit')
|
|
|
-runonce('roxterm --disable-sm')
|
|
|
-runonce('pidgin')
|
|
|
-runonce('setxkbmap -option compose:menu')
|
|
|
|
|
|
-
|
|
|
|