2013-09-13 19:20:22 +00:00
|
|
|
|
--[[
|
2014-05-10 22:24:30 +00:00
|
|
|
|
|
|
|
|
|
Dremora Awesome WM config 2.0
|
|
|
|
|
github.com/copycat-killer
|
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
--]]
|
|
|
|
|
|
|
|
|
|
-- {{{ Required libraries
|
2013-08-19 18:07:15 +00:00
|
|
|
|
local gears = require("gears")
|
|
|
|
|
local awful = require("awful")
|
|
|
|
|
awful.rules = require("awful.rules")
|
2013-09-13 19:20:22 +00:00
|
|
|
|
require("awful.autofocus")
|
2013-08-19 18:07:15 +00:00
|
|
|
|
local wibox = require("wibox")
|
|
|
|
|
local beautiful = require("beautiful")
|
|
|
|
|
local naughty = require("naughty")
|
2013-09-13 19:20:22 +00:00
|
|
|
|
local lain = require("lain")
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- }}}
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2014-05-11 00:15:20 +00:00
|
|
|
|
-- Error handling
|
|
|
|
|
require("myrc.errors")
|
2013-09-13 19:20:22 +00:00
|
|
|
|
|
2014-05-10 22:24:30 +00:00
|
|
|
|
-- STARTUP apps
|
|
|
|
|
require("settings.startup")
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- {{{ Variable definitions
|
|
|
|
|
-- localization
|
|
|
|
|
--os.setlocale(os.getenv("LANG"))
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- beautiful init
|
2013-11-28 08:57:31 +00:00
|
|
|
|
beautiful.init(awful.util.getdir("config") .. "/themes/dremora/theme.lua")
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- common
|
|
|
|
|
modkey = "Mod4"
|
|
|
|
|
altkey = "Mod1"
|
|
|
|
|
terminal = "urxvtc" or "xterm"
|
|
|
|
|
editor = os.getenv("EDITOR") or "nano" or "vi"
|
2013-07-06 15:54:28 +00:00
|
|
|
|
editor_cmd = terminal .. " -e " .. editor
|
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- user defined
|
|
|
|
|
browser = "dwb"
|
|
|
|
|
browser2 = "iron"
|
|
|
|
|
gui_editor = "gvim"
|
|
|
|
|
graphics = "gimp"
|
|
|
|
|
|
2014-05-11 22:02:36 +00:00
|
|
|
|
layouts = {
|
2013-09-13 19:20:22 +00:00
|
|
|
|
awful.layout.suit.floating,
|
|
|
|
|
lain.layout.uselesstile,
|
|
|
|
|
awful.layout.suit.fair,
|
|
|
|
|
lain.layout.uselesstile.left,
|
|
|
|
|
lain.layout.uselesstile.top
|
2013-07-06 15:54:28 +00:00
|
|
|
|
}
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- }}}
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- {{{ Tags
|
|
|
|
|
tags = {
|
|
|
|
|
names = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" },
|
|
|
|
|
layout = { layouts[1], layouts[3], layouts[2], layouts[1], layouts[5] }
|
|
|
|
|
}
|
|
|
|
|
for s = 1, screen.count() do
|
|
|
|
|
tags[s] = awful.tag(tags.names, s, tags.layout)
|
|
|
|
|
end
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- }}}
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- {{{ Wallpaper
|
2013-07-06 15:54:28 +00:00
|
|
|
|
if beautiful.wallpaper then
|
|
|
|
|
for s = 1, screen.count() do
|
|
|
|
|
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
|
|
|
|
|
end
|
|
|
|
|
end
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- }}}
|
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- {{{ Menu
|
2013-08-04 21:39:49 +00:00
|
|
|
|
require("freedesktop/freedesktop")
|
|
|
|
|
-- }}}
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- {{{ Wibox
|
2013-09-13 19:20:22 +00:00
|
|
|
|
markup = lain.util.markup
|
|
|
|
|
white = beautiful.fg_focus
|
|
|
|
|
gray = "#858585"
|
|
|
|
|
|
|
|
|
|
-- Textclock
|
|
|
|
|
mytextclock = awful.widget.textclock(markup(gray, " %a")
|
|
|
|
|
.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M "))
|
|
|
|
|
|
|
|
|
|
-- Calendar
|
|
|
|
|
lain.widgets.calendar:attach(mytextclock, { fg = white })
|
|
|
|
|
|
|
|
|
|
--[[ Mail IMAP check
|
|
|
|
|
-- commented because it needs to be set before use
|
|
|
|
|
mailwidget = lain.widgets.imap({
|
|
|
|
|
timeout = 180,
|
|
|
|
|
server = "server",
|
|
|
|
|
mail = "mail",
|
|
|
|
|
password = "keyring get mail",
|
|
|
|
|
settings = function()
|
|
|
|
|
mail_notification_preset.fg = white
|
|
|
|
|
mail = ""
|
|
|
|
|
count = ""
|
|
|
|
|
|
|
|
|
|
if mailcount > 0 then
|
2014-04-12 16:02:00 +00:00
|
|
|
|
mail = "Mail "
|
2013-09-13 19:20:22 +00:00
|
|
|
|
count = mailcount .. " "
|
|
|
|
|
end
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
widget:set_markup(markup(gray, mail) .. markup(white, count))
|
2013-07-06 15:54:28 +00:00
|
|
|
|
end
|
2013-09-13 19:20:22 +00:00
|
|
|
|
})
|
|
|
|
|
]]
|
|
|
|
|
|
|
|
|
|
-- MPD
|
|
|
|
|
mpdwidget = lain.widgets.mpd({
|
|
|
|
|
settings = function()
|
|
|
|
|
mpd_notification_preset.fg = white
|
|
|
|
|
artist = mpd_now.artist .. " "
|
|
|
|
|
title = mpd_now.title .. " "
|
|
|
|
|
|
|
|
|
|
if mpd_now.state == "pause" then
|
|
|
|
|
artist = "mpd "
|
|
|
|
|
title = "paused "
|
|
|
|
|
elseif mpd_now.state == "stop" then
|
|
|
|
|
artist = ""
|
|
|
|
|
title = ""
|
|
|
|
|
end
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
widget:set_markup(markup(gray, artist) .. markup(white, title))
|
2013-07-06 15:54:28 +00:00
|
|
|
|
end
|
2013-09-13 19:20:22 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- /home fs
|
|
|
|
|
fshome = lain.widgets.fs({
|
|
|
|
|
partition = "/home",
|
|
|
|
|
settings = function()
|
|
|
|
|
fs_notification_preset.fg = white
|
|
|
|
|
fs_header = ""
|
|
|
|
|
fs_p = ""
|
|
|
|
|
|
2013-10-02 14:25:08 +00:00
|
|
|
|
if fs_now.used >= 90 then
|
2013-09-13 19:20:22 +00:00
|
|
|
|
fs_header = " Hdd "
|
2013-10-02 14:25:08 +00:00
|
|
|
|
fs_p = fs_now.used
|
2013-09-13 19:20:22 +00:00
|
|
|
|
end
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
widget:set_markup(markup(gray, fs_header) .. markup(white, fs_p))
|
2013-07-06 15:54:28 +00:00
|
|
|
|
end
|
2013-09-13 19:20:22 +00:00
|
|
|
|
})
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Battery
|
|
|
|
|
batwidget = lain.widgets.bat({
|
|
|
|
|
settings = function()
|
|
|
|
|
bat_header = " Bat "
|
|
|
|
|
bat_p = bat_now.perc .. " "
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
if bat_now.status == "Not present" then
|
|
|
|
|
bat_header = ""
|
|
|
|
|
bat_p = ""
|
|
|
|
|
end
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
widget:set_markup(markup(gray, bat_header) .. markup(white, bat_p))
|
|
|
|
|
end
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- ALSA volume
|
|
|
|
|
volumewidget = lain.widgets.alsa({
|
|
|
|
|
settings = function()
|
|
|
|
|
header = " Vol "
|
|
|
|
|
vlevel = volume_now.level
|
|
|
|
|
|
|
|
|
|
if volume_now.status == "off" then
|
|
|
|
|
vlevel = vlevel .. "M "
|
|
|
|
|
else
|
|
|
|
|
vlevel = vlevel .. " "
|
|
|
|
|
end
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
widget:set_markup(markup(gray, header) .. markup(white, vlevel))
|
2013-07-06 15:54:28 +00:00
|
|
|
|
end
|
2013-09-13 19:20:22 +00:00
|
|
|
|
})
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Weather
|
|
|
|
|
yawn = lain.widgets.yawn(123456,
|
|
|
|
|
{
|
|
|
|
|
settings = function()
|
|
|
|
|
yawn_notification_preset.fg = white
|
|
|
|
|
end
|
|
|
|
|
})
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
|
|
|
|
-- Separators
|
|
|
|
|
first = wibox.widget.textbox('<span font="Tamsyn 4"> </span>')
|
|
|
|
|
arrl_pre = wibox.widget.imagebox()
|
|
|
|
|
arrl_pre:set_image(beautiful.arrl_lr_pre)
|
|
|
|
|
arrl_post = wibox.widget.imagebox()
|
|
|
|
|
arrl_post:set_image(beautiful.arrl_lr_post)
|
|
|
|
|
|
|
|
|
|
-- Create a wibox for each screen and add it
|
|
|
|
|
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, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
|
|
|
|
|
awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
|
|
|
|
|
)
|
|
|
|
|
mytasklist = {}
|
|
|
|
|
mytasklist.buttons = awful.util.table.join(
|
|
|
|
|
awful.button({ }, 1, function (c)
|
|
|
|
|
if c == client.focus then
|
|
|
|
|
c.minimized = true
|
|
|
|
|
else
|
|
|
|
|
-- Without this, the following
|
|
|
|
|
-- :isvisible() makes no sense
|
|
|
|
|
c.minimized = false
|
|
|
|
|
if not c:isvisible() then
|
|
|
|
|
awful.tag.viewonly(c:tags()[1])
|
|
|
|
|
end
|
|
|
|
|
-- This will also un-minimize
|
|
|
|
|
-- the client, if needed
|
|
|
|
|
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
|
|
|
|
|
-- Create a promptbox for each screen
|
|
|
|
|
mypromptbox[s] = awful.widget.prompt()
|
|
|
|
|
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
|
|
|
|
|
-- We need one layoutbox per screen.
|
|
|
|
|
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)))
|
|
|
|
|
-- Create a taglist widget
|
|
|
|
|
mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
|
|
|
|
|
|
|
|
|
|
-- Create a tasklist widget
|
|
|
|
|
mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
|
2013-09-13 19:20:22 +00:00
|
|
|
|
|
2013-07-06 15:54:28 +00:00
|
|
|
|
-- Create the wibox
|
|
|
|
|
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 })
|
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Widgets that are aligned to the left
|
2013-07-06 15:54:28 +00:00
|
|
|
|
local left_layout = wibox.layout.fixed.horizontal()
|
|
|
|
|
left_layout:add(first)
|
|
|
|
|
left_layout:add(mytaglist[s])
|
|
|
|
|
left_layout:add(arrl_pre)
|
|
|
|
|
left_layout:add(mylayoutbox[s])
|
|
|
|
|
left_layout:add(arrl_post)
|
|
|
|
|
left_layout:add(mypromptbox[s])
|
|
|
|
|
left_layout:add(first)
|
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Widgets that are aligned to the right
|
2013-07-06 15:54:28 +00:00
|
|
|
|
local right_layout = wibox.layout.fixed.horizontal()
|
|
|
|
|
if s == 1 then right_layout:add(wibox.widget.systray()) end
|
|
|
|
|
right_layout:add(first)
|
|
|
|
|
right_layout:add(mpdwidget)
|
2013-09-13 19:20:22 +00:00
|
|
|
|
--right_layout:add(mailwidget)
|
|
|
|
|
right_layout:add(fshome)
|
2013-07-06 15:54:28 +00:00
|
|
|
|
right_layout:add(batwidget)
|
|
|
|
|
right_layout:add(volumewidget)
|
|
|
|
|
right_layout:add(mytextclock)
|
|
|
|
|
|
|
|
|
|
-- 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(mytasklist[s])
|
|
|
|
|
layout:set_right(right_layout)
|
|
|
|
|
|
|
|
|
|
mywibox[s]:set_widget(layout)
|
|
|
|
|
end
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- }}}
|
|
|
|
|
|
2014-05-11 20:53:37 +00:00
|
|
|
|
-- Bindings
|
|
|
|
|
require("settings.binds")
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- {{{ Key bindings
|
2014-05-11 21:27:50 +00:00
|
|
|
|
globalkeys = awful.util.table.join(globalkeys,
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Take a screenshot
|
|
|
|
|
-- https://github.com/copycat-killer/dots/blob/master/bin/screenshot
|
|
|
|
|
awful.key({ altkey }, "p", function() os.execute("screenshot") end),
|
|
|
|
|
|
|
|
|
|
-- Tag browsing
|
|
|
|
|
awful.key({ modkey }, "Left", awful.tag.viewprev ),
|
|
|
|
|
awful.key({ modkey }, "Right", awful.tag.viewnext ),
|
|
|
|
|
awful.key({ modkey }, "Escape", awful.tag.history.restore),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2013-09-13 19:20:22 +00:00
|
|
|
|
-- Non-empty tag browsing
|
|
|
|
|
awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end),
|
|
|
|
|
awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end),
|
|
|
|
|
|
|
|
|
|
-- Default client focus
|
|
|
|
|
awful.key({ altkey }, "k",
|
2013-07-06 15:54:28 +00:00
|
|
|
|
function ()
|
|
|
|
|
awful.client.focus.byidx( 1)
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
2013-09-13 19:20:22 +00:00
|
|
|
|
awful.key({ altkey }, "j",
|
2013-07-06 15:54:28 +00:00
|
|
|
|
function ()
|
|
|
|
|
awful.client.focus.byidx(-1)
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
2013-09-13 19:20:22 +00:00
|
|
|
|
|
|
|
|
|
-- By direction client focus
|
|
|
|
|
awful.key({ modkey }, "j",
|
|
|
|
|
function()
|
|
|
|
|
awful.client.focus.bydirection("down")
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ modkey }, "k",
|
|
|
|
|
function()
|
|
|
|
|
awful.client.focus.bydirection("up")
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ modkey }, "h",
|
|
|
|
|
function()
|
|
|
|
|
awful.client.focus.bydirection("left")
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ modkey }, "l",
|
|
|
|
|
function()
|
|
|
|
|
awful.client.focus.bydirection("right")
|
|
|
|
|
if client.focus then client.focus:raise() end
|
|
|
|
|
end),
|
|
|
|
|
|
|
|
|
|
-- Show Menu
|
|
|
|
|
awful.key({ modkey }, "w",
|
|
|
|
|
function ()
|
|
|
|
|
mymainmenu:show({ keygrabber = true })
|
|
|
|
|
end),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
|
|
|
|
-- Show/Hide Wibox
|
|
|
|
|
awful.key({ modkey }, "b", function ()
|
|
|
|
|
mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
|
|
|
|
|
end),
|
|
|
|
|
|
2013-09-19 18:54:11 +00:00
|
|
|
|
-- On the fly useless gaps change
|
|
|
|
|
awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end),
|
|
|
|
|
awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end),
|
|
|
|
|
|
2013-07-06 15:54:28 +00:00
|
|
|
|
-- Widgets popups
|
2013-09-13 19:20:22 +00:00
|
|
|
|
awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end),
|
|
|
|
|
awful.key({ altkey, }, "h", function () fshome.show(7) end),
|
|
|
|
|
awful.key({ altkey, }, "w", function () yawn.show(7) end),
|
|
|
|
|
|
|
|
|
|
-- ALSA volume control
|
|
|
|
|
awful.key({ altkey }, "Up",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn("amixer -q set Master 1%+")
|
|
|
|
|
volumewidget.update()
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ altkey }, "Down",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn("amixer -q set Master 1%-")
|
|
|
|
|
volumewidget.update()
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ altkey }, "m",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn("amixer -q set Master playback toggle")
|
|
|
|
|
volumewidget.update()
|
|
|
|
|
end),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
awful.key({ altkey, "Control" }, "m",
|
2013-09-13 19:20:22 +00:00
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn("amixer -q set Master playback 100%")
|
|
|
|
|
volumewidget.update()
|
|
|
|
|
end),
|
|
|
|
|
|
|
|
|
|
-- MPD control
|
|
|
|
|
awful.key({ altkey, "Control" }, "Up",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn_with_shell("mpc toggle || ncmpcpp toggle || ncmpc toggle || pms toggle")
|
|
|
|
|
mpdwidget.update()
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ altkey, "Control" }, "Down",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn_with_shell("mpc stop || ncmpcpp stop || ncmpc stop || pms stop")
|
|
|
|
|
mpdwidget.update()
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ altkey, "Control" }, "Left",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn_with_shell("mpc prev || ncmpcpp prev || ncmpc prev || pms prev")
|
|
|
|
|
mpdwidget.update()
|
|
|
|
|
end),
|
|
|
|
|
awful.key({ altkey, "Control" }, "Right",
|
|
|
|
|
function ()
|
|
|
|
|
awful.util.spawn_with_shell("mpc next || ncmpcpp next || ncmpc next || pms next")
|
|
|
|
|
mpdwidget.update()
|
|
|
|
|
end),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
|
|
|
|
-- Copy to clipboard
|
|
|
|
|
awful.key({ modkey }, "c", function () os.execute("xsel -p -o | xsel -i -b") end),
|
|
|
|
|
|
|
|
|
|
-- User programs
|
2013-07-16 16:46:46 +00:00
|
|
|
|
awful.key({ modkey }, "q", function () awful.util.spawn(browser) end),
|
2013-09-13 19:20:22 +00:00
|
|
|
|
awful.key({ modkey }, "i", function () awful.util.spawn(browser2) end),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end),
|
2013-07-16 16:46:46 +00:00
|
|
|
|
awful.key({ modkey }, "g", function () awful.util.spawn(graphics) end),
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
|
|
|
|
-- Prompt
|
|
|
|
|
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)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
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, "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)
|
|
|
|
|
-- The client currently has the input focus, so it cannot be
|
|
|
|
|
-- minimized, since minimized clients can't have the focus.
|
|
|
|
|
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)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
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)
|
2013-08-04 21:39:49 +00:00
|
|
|
|
-- }}}
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2014-05-11 00:06:54 +00:00
|
|
|
|
-- Rules
|
|
|
|
|
require("settings.rules")
|
2013-07-06 15:54:28 +00:00
|
|
|
|
|
2014-05-11 20:28:00 +00:00
|
|
|
|
-- Signals
|
|
|
|
|
require("myrc.signals")
|