-- Standard awesome library
require("awful")
require("awful.autofocus")
require("awful.rules")
-- Widget and layout library
require("wibox")
-- Theme handling library
require("beautiful")
-- Notification library
--require("naughty")
-- Presets
require("presets")
-- Freedesktop-compliant menu
require("freedesktop.menu")
-- Bashets
require("bashets")
--local capi = {dbus = dbus}
-- {{{ Initialization
-- Set correct locale
os.setlocale(os.getenv("LANG"))
-- Set theme for beautiful
presets.set_theme("default7")
--presets.set_theme("wombat")
-- Runner wrapper
local run = presets.runner
-- Default modkey
modkey = "Mod4"
-- Options for bashets
bashets.set_script_path("/dev/shm/bashets/")
bashets.set_temporary_path("/dev/shm/tmp/")
-- A very special setting
bright_color="#202020"
-- }}}
-- {{{ Commands
local commands = {}
commands.mail = "firefox http://gmail.com"
commands.lock = "xscreensaver-command --lock"
commands.fileman = "pcmanfm"
commands.calc = "xcalc"
commands.mute = "mute.sh"
commands.browser = "firefox"
commands.raisevol = "amixer set Master 5%+"
commands.lowervol = "amixer set Master 5%-"
commands.playpause = "mpc toggle"
commands.player = "xterm -e ncmpcpp"
commands.nexttrack = "mpc next"
commands.prevtrack = "mpc prev"
commands.playstop = "mpc stop"
commands.screenshot = "scrot -e 'mv $f ~/screenshots'"
commands.screenwin = "scrot -s -b -e 'mv $f ~/screenshots'"
commands.terminal = "xterm"
commands.editor = "xterm -e vim"
-- }}}
-- {{{ Autostart apps
presets.autorun({
"xcompmgr -c -f -r9 -t -18 -P",
"xscreensaver -nosplash",
"wmname LG3D",
"sh /home/anton/.fehbg",
"clipit -d -n"
})
-- }}}
-- {{{ Variable definitions
-- Table of layouts to cover with awful.layout.inc, order matters.
layouts =
{
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,
awful.layout.suit.floating
}
-- }}}
-- {{{ Tags
-- Define a tag table which hold all screen tags.
tags = {}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
end
-- }}}
-- {{{ Menu
-- Create a laucher widget and a main menu
myawesomemenu = {
{ "manual", commands.terminal .. " -e man awesome" },
{ "edit config", commands.editor .. " " .. awful.util.getdir("config") .. "/rc.lua" },
{ "restart", awesome.restart },
{ "quit", awesome.quit }
}
menuitems = {
{ "awesome", myawesomemenu, beautiful.awesome_icon },
{ "matlab", "/opt/matlab2k11/bin/matlab -desktop"},
{ "maple", "/opt/maple/bin/xmaple"},
{ "open terminal", commands.terminal }
}
logoutmenu = {
{ "log out", function() bashets.stop()
awesome.quit() end, "/home/anton/.config/awesome/user/user-offline.png" },
{ "lock", "xscreensaver-command -lock", "/home/anton/.config/awesome/user/user-away.png" },
{ "shutdown", "gksu \"shutdown -h now\"" },
{ "reboot", "gksu \"reboot\"" }
}
menuitems = awful.util.table.join(menuitems, freedesktop.menu.new())
w_mainmenu = awful.menu({ items = menuitems })
w_launcher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = w_mainmenu })
sd_menu = awful.menu({items = logoutmenu})
sd_launcher = awful.widget.launcher({ image = "/home/anton/icn2.png", menu = sd_menu })
-- }}}
-- {{{ Wibox
-- Create a textclock widget
w_textclock = awful.widget.textclock()
-- Create a wibox for each screen and add it
topbar = {}
bottombar = {}
leftbar = {}
w_promptbox = {}
wr_promptbox = {}
w_layoutbox = {}
w_taglist = {}
w_taglist.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)
)
w_tasklist = {}
w_tasklist.buttons = awful.util.table.join(
awful.button({ }, 1, function (c)
if not c:isvisible() then
awful.tag.viewonly(c:tags()[1])
end
client.focus = c
c:raise()
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))
-- bashets widgets
datew = wibox.widget.textbox()
bashets.register("date.sh", { widget = datew, format = '$1:$2', update_time = 30, separator = ':'})
mpdw1 = wibox.widget.textbox()
bashets.register("mpd.sh", {widget = mpdw1, format = ' $1', update_time = 1, separator = '|'})
ww = wibox.widget.textbox()
bashets.register("forecast.sh", {widget = ww, format = ' $1 $2', update_time=3600, external = true})
xkbw = wibox.widget.textbox()
bashets.register("xkb.sh", {widget = xkbw, update_time = 1, external = true, format = ' $1'})
batw = wibox.widget.imagebox()
bashets.register("batpic.sh", {widget = batw, separator = " "})
sepw = wibox.widget.textbox()
sepw:set_text(" ")
mpdtext = wibox.widget.textbox()
bashets.register("/home/anton/mpdinfo.sh", {widget = mpdtext, separator="==", format="$1"})
caltext = wibox.widget.textbox()
caltext:set_markup(" "..os.date("%B %Y")..", "..os.date("%A")..", "..os.date("%d").."")
for s = 1, screen.count() do
-- Create a promptbox for each screen
w_promptbox[s] = awful.widget.prompt({bg_cursor="#e6e6e5"})
wr_promptbox[s] = wibox.widget.textbox()
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
-- We need one layoutbox per screen.
w_layoutbox[s] = awful.widget.layoutbox(s)
w_layoutbox[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)))
-- Create a taglist widget
w_taglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, w_taglist.buttons)
-- Create a tasklist widget
w_tasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, w_tasklist.buttons)
-- Create the wibox
topbar[s] = awful.wibox({ position = "top", screen = s })
topbar[s].opacity = 0.8
bottombar[s] = awful.wibox({ position = "bottom", screen = s, bg = beautiful.bg_focus })
bottombar[s].height = 12
bottombar[s].opacity = 0.8
-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(w_launcher)
left_layout:add(sepw)
left_layout:add(w_taglist[s])
left_layout:add(sepw)
--left_layout:add(w_layoutbox[s])
--left_layout:add(sepw)
left_layout:add(w_promptbox[s])
left_layout:add(wr_promptbox[s])
-- Widgets that are aligned to the right
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then right_layout:add(wibox.widget.systray()) end
--right_layout:add(w_textclock)
--
right_layout:add(sepw)
right_layout:add(sepw)
right_layout:add(xkbw)
right_layout:add(sepw)
right_layout:add(ww)
right_layout:add(sepw)
right_layout:add(sepw)
right_layout:add(batw)
right_layout:add(sepw)
right_layout:add(datew)
right_layout:add(sepw)
right_layout:add(sd_launcher)
right_layout:add(sepw)
-- Now bring it all together (with the tasklist in the middle)
local layout = wibox.layout.align.horizontal()
layout:set_left(left_layout)
layout:set_middle(w_tasklist[s])
layout:set_right(right_layout)
topbar[s]:set_widget(layout)
local layout_b = wibox.layout.align.horizontal()
local left_layout_b = wibox.layout.fixed.horizontal()
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(mpdw1)
left_layout_b:add(sepw)
left_layout_b:add(sepw)
left_layout_b:add(mpdtext)
layout_b:set_left(left_layout_b)
local right_layout_b = wibox.layout.fixed.horizontal()
right_layout_b:add(caltext)
right_layout_b:add(sepw)
right_layout_b:add(sepw)
layout_b:set_right(right_layout_b)
bottombar[s]:set_widget(layout_b)
end
-- }}}
---- {{{ Ps box
--pstext = wibox.widget.textbox();
--psmargin = wibox.layout.margin(pstext, 10, 0, 0, 0);
----pstext:set_markup(" " .. awful.util.pread("ps axk -%cpu,-%mem o pid,comm,%cpu,%mem | head -n 6") .. "")
--pstext:set_markup("TEST WIDGET")
----psbox = wibox({width=240, height=90, bg="#dedede"})
--psbox = wibox({width=240, height=50, bg="#dedede"})
----psbox = wibox({width=240, height=90, bg=beautiful.bg_normal})
--local ps_layout = wibox.layout.fixed.horizontal()
--ps_layout:add(pstext)
--psbox.screen = 1
--psbox.visible = true
--psbox.opacity = 0.6
----psbox:set_widget(psmargin)
--psbox:set_widget(ps_layout)
--psbox:set_bg("linear:0,16:" .. w .. ",16:0,#f7f7f7:1,#d5d5d5")
----psbox:geometry({x=1280 - psbox.width - 3, y= 800 - psbox.height - 23})
--psbox:geometry({x=1280 - psbox.width - 10, y= 800 - psbox.height - 3})
--bashets.register("ps.sh", {widget = pstext, format = "$1", update_time = 2, separator = "|"})
--
---- }}}
--- {{{ coverbox-ng
coverbox = wibox({width=26, height=26, bg="#ffffffff"})
coverimg = wibox.widget.imagebox()
coverimg:set_resize(true)
bashets.register("/home/anton/coverart.sh", {widget = coverimg, separator="=="})
local ca1_layout = wibox.layout.fixed.horizontal()
ca1_layout:add(coverimg)
--coverbox.widgets = {coverimg, layout = awful.widget.layout.vertical.top}
coverbox:set_widget(ca1_layout)
coverbox:geometry({x = 10, y = 800 - coverbox.height - 3})
coverbox.screen = 1
coverbox.visible = true
coverbox.opacity = 0.6
coverbox2 = wibox({width=150, height=3, bg="#ffffffff"})
coverbox2:geometry({x = 44, y = 800 - 16})
coverpg = awful.widget.progressbar()
coverpg:set_width(150)
coverpg:set_height(3)
coverpg:set_vertical(false)
coverpg:set_background_color("#606763")
coverpg:set_color('#ffffff')
coverpg:set_max_value(100)
bashets.register("/home/anton/mpdp.sh", {widget = coverpg, separator="=="})
local ca2_layout = wibox.layout.fixed.horizontal()
ca2_layout:add(coverpg)
coverbox2:set_widget(ca2_layout)
coverbox2.screen = 1
coverbox2.visible = true
coverbox2.opacity = 0.6
--- }}}
--bashets.register("org.freedesktop.Hal.Manager", {dbus = true, busname = "system", widget = datew, format="$3"})
-- {{{ Start widget updates
bashets.start()
-- }}}
-- {{{ Mouse bindings
root.buttons(awful.util.table.join(
awful.button({ }, 3, function () w_mainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
))
-- }}}
-- {{{ Key bindings
globalkeys = awful.util.table.join(
-- User defined
awful.key({}, "XF86AudioMute", run(commands.mute)),
awful.key({}, "XF86AudioRaiseVolume", run(commands.raisevol)),
awful.key({}, "XF86AudioLowerVolume", run(commands.lowervol)),
awful.key({}, "XF86AudioPlay", run(commands.playpause)),
awful.key({}, "XF86AudioMedia", run(commands.player)),
awful.key({}, "XF86AudioStop", run(commands.playstop)),
awful.key({}, "XF86AudioNext", run(commands.nexttrack)),
awful.key({}, "XF86AudioPrev", run(commands.prevtrack)),
awful.key({}, "XF86MyComputer", run(commands.fileman)),
awful.key({}, "XF86Mail", run(commands.mail)),
awful.key({}, "XF86HomePage", run(commands.browser)),
awful.key({}, "XF86Calculator", run(commands.calc)),
awful.key({"Mod1"}, "Print", run(commands.screenwin)),
awful.key({}, "Print", run(commands.screenshot)),
awful.key({}, "XF86Sleep", run(commands.lock)),
awful.key({"Control", "Mod1"}, "l", run(commands.lock)),
-- Default
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, }, "w", function () mymainmenu:show({keygrabber=true}) end),
-- Layout manipulation
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),
-- Standard program
awful.key({ modkey, }, "Return", run(commands.terminal)),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", function() bashets.stop()
awesome.quit() end),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
-- Prompt
awful.key({ modkey }, "r", function () w_promptbox[mouse.screen]:run() end),
awful.key({ modkey, "Shift" }, "r", function ()
awful.prompt.run({prompt = "Run as root: "}, wr_promptbox[mouse.screen], function(expr)
awful.util.spawn_with_shell("gksu \"" .. expr .. "\"")
end)
end)
)
clientkeys = awful.util.table.join(
awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
awful.key({ modkey, }, "q", 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, }, "t", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
awful.key({ modkey, }, "m",
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
end)
)
-- Compute the maximum number of digit we need, limited to 9
keynumber = 0
for s = 1, screen.count() do
keynumber = math.min(9, math.max(#tags[s], keynumber));
end
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it works on any keyboard layout.
-- This should map on the top row of your keyboard, usually 1 to 9.
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))
-- Set keys
root.keys(globalkeys)
-- }}}
-- {{{ Rules
awful.rules.rules = {
-- All clients will match this rule.
{ 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 = "Gajim" },
properties = { floating = true } },
{ rule = { class = "Empathy" },
properties = { floating = true } },
{ rule = { class = "Cairo-clock" },
properties = { floating = true } },
{ rule = { class = "XClock" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
{ rule = { class = "XTerm" },
properties = { opacity = 0.78 } },
}
-- }}}
-- {{{ Signals
-- Signal function to execute when a new client appears.
client.connect_signal("manage", function (c, startup)
-- Enable sloppy focus
c:connect_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)
c.size_hints_honor = false
if not startup then
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- awful.client.setslave(c)
-- Put windows in a smart way, only if they does not set an initial position.
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.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
-- }}}