1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00
awesome-copycats/rc.lua.blackburn

966 lines
34 KiB
Plaintext
Raw Normal View History

2013-03-30 21:34:54 +00:00
--[[ ]]--
-- -
-- Blackburn Awesome WM 3.5.+ config --
-- github.com/copycat-killer --
2013-04-01 08:15:41 +00:00
-- -
2013-03-30 21:34:54 +00:00
--[[ ]]--
-- Required Libraries
2013-04-12 11:05:02 +00:00
local gears = require("gears")
2013-04-02 12:32:47 +00:00
local awful = require("awful")
awful.rules = require("awful.rules")
awful.autofocus = require("awful.autofocus")
local wibox = require("wibox")
local beautiful = require("beautiful")
local naughty = require("naughty")
local vicious = require("vicious")
local scratch = require("scratch")
2013-04-22 15:13:19 +00:00
local yawn = require("yawn")
2013-07-29 10:28:14 +00:00
local layouts = require("layouts")
2013-03-30 21:34:54 +00:00
-- Run once function
function run_once(cmd)
findme = cmd
firstspace = cmd:find(" ")
if firstspace then
findme = cmd:sub(0, firstspace-1)
end
awful.util.spawn_with_shell("pgrep -u $USER -x " .. findme .. " > /dev/null || (" .. cmd .. ")")
end
-- autostart applications
run_once("urxvtd")
2013-06-23 07:34:30 +00:00
run_once("unclutter -idle 10")
2013-03-30 21:34:54 +00:00
run_once("compton")
-- Localization
os.setlocale(os.getenv("LANG"))
-- Error Handling
-- Check if awesome encountered an error during startup and fell back to
-- another config (This code will only ever execute for the fallback config)
if awesome.startup_errors then
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, there were errors during startup!",
text = awesome.startup_errors })
end
-- Handle runtime errors after startup
do
2013-04-02 12:32:47 +00:00
local in_error = false
2013-03-30 21:34:54 +00:00
awesome.connect_signal("debug::error", function (err)
-- Make sure we don't go into an endless error loop
if in_error then return end
in_error = true
naughty.notify({ preset = naughty.config.presets.critical,
title = "Oops, an error happened!",
text = err })
2013-04-02 12:32:47 +00:00
local in_error = false
2013-03-30 21:34:54 +00:00
end)
end
2013-04-02 11:43:50 +00:00
-- Global variables
2013-03-30 21:34:54 +00:00
home = os.getenv("HOME")
confdir = home .. "/.config/awesome"
2013-04-01 08:14:28 +00:00
scriptdir = confdir .. "/scripts/"
2013-03-30 21:34:54 +00:00
themes = confdir .. "/themes"
active_theme = themes .. "/blackburn"
2013-04-02 11:43:50 +00:00
language = string.gsub(os.getenv("LANG"), ".utf8", "")
2013-03-30 21:34:54 +00:00
beautiful.init(active_theme .. "/theme.lua")
terminal = "urxvtc"
2013-08-02 19:19:22 +00:00
editor = os.getenv("EDITOR") or "vim"
2013-03-30 21:34:54 +00:00
editor_cmd = terminal .. " -e " .. editor
2013-04-12 12:23:32 +00:00
gui_editor = "gvim"
2013-03-30 21:34:54 +00:00
browser = "dwb"
mail = terminal .. " -e mutt "
wifi = terminal .. " -e sudo wifi-menu "
musicplr = terminal .. " -g 130x34-320+16 -e ncmpcpp "
modkey = "Mod4"
altkey = "Mod1"
layouts =
{
awful.layout.suit.floating, -- 1
awful.layout.suit.tile, -- 2
2013-04-16 19:29:22 +00:00
awful.layout.suit.fair, -- 3
awful.layout.suit.tile.left, -- 4
2013-03-30 21:34:54 +00:00
awful.layout.suit.tile.top, -- 5
2013-07-29 10:28:14 +00:00
layouts.tilegaps, -- 6
2013-03-30 21:34:54 +00:00
}
-- Wallpaper
if beautiful.wallpaper then
for s = 1, screen.count() do
gears.wallpaper.maximized(beautiful.wallpaper, s, true)
end
end
-- Tags
tags = {
2013-04-14 13:13:02 +00:00
names = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" },
2013-04-12 11:05:02 +00:00
layout = { layouts[1], layouts[3], layouts[2], layouts[1], layouts[5] }
2013-03-30 21:34:54 +00:00
}
for s = 1, screen.count() do
tags[s] = awful.tag(tags.names, s, tags.layout)
end
-- Menu
myaccessories = {
{ "archives", "7zFM" },
2013-04-12 11:05:02 +00:00
{ "charmap", "gucharmap" },
2013-04-23 12:42:16 +00:00
{ "gbdfed", "gbdfed" },
{ "gimp", "gimp" },
{ "text editor", gui_editor },
2013-03-30 21:34:54 +00:00
}
myinternet = {
2013-05-02 12:03:22 +00:00
{ "torrent" , "transmission-gtk" },
2013-03-30 21:34:54 +00:00
{ "torrent search" , "torrent-search" }
}
myoffice = {
{ "writer" , "lowriter" },
{ "impress" , "loimpress" },
}
mysystem = {
{ "appearance" , "lxappearance" },
{ "cleaning" , "bleachbit" },
{ "powertop" , terminal .. " -e sudo powertop " },
}
mymainmenu = awful.menu({ items = {
{ "accessories" , myaccessories },
{ "internet" , myinternet },
{ "office" , myoffice },
{ "system" , mysystem },
}
})
2013-04-18 13:37:05 +00:00
mylauncher = awful.widget.launcher({ menu = mymainmenu })
2013-03-30 21:34:54 +00:00
-- Wibox
2013-04-25 00:24:31 +00:00
-- Colours
2013-03-30 21:34:54 +00:00
coldef = "</span>"
white = "<span color='#d7d7d7'>"
2013-07-26 19:11:19 +00:00
gray = "<span color='#5f5f5f'>"
2013-03-30 21:34:54 +00:00
-- Textclock widget
mytextclock = awful.widget.textclock(white .. "%H:%M" .. coldef)
-- attached calendar
local os = os
local string = string
local table = table
local util = awful.util
char_width = nil
text_color = theme.fg_normal or "#FFFFFF"
2013-04-06 09:43:42 +00:00
today_color = theme.taglist_fg_focus or "#FF7100"
2013-03-30 21:34:54 +00:00
calendar_width = 21
local calendar = nil
local offset = 0
local data = nil
local function pop_spaces(s1, s2, maxsize)
local sps = ""
for i = 1, maxsize - string.len(s1) - string.len(s2) do
sps = sps .. " "
end
return s1 .. sps .. s2
end
local function create_calendar()
offset = offset or 0
local now = os.date("*t")
local cal_month = now.month + offset
local cal_year = now.year
if cal_month > 12 then
cal_month = (cal_month % 12)
cal_year = cal_year + 1
elseif cal_month < 1 then
cal_month = (cal_month + 12)
cal_year = cal_year - 1
end
local last_day = os.date("%d", os.time({ day = 1, year = cal_year,
month = cal_month + 1}) - 86400)
2013-04-01 08:15:41 +00:00
2013-03-30 21:34:54 +00:00
local first_day = os.time({ day = 1, month = cal_month, year = cal_year})
2013-04-01 08:15:41 +00:00
local first_day_in_week = os.date("%w", first_day)
2013-03-30 22:28:06 +00:00
local result = "do lu ma me gi ve sa\n" -- days of the week
2013-04-09 10:10:03 +00:00
2013-04-01 08:15:41 +00:00
-- Italian localization
-- can be a stub for your own localization
2013-04-02 11:43:50 +00:00
if language:find("it_IT") == nil
2013-04-09 10:10:03 +00:00
then
result = "su mo tu we th fr sa\n"
2013-04-01 08:15:41 +00:00
else
2013-04-09 10:10:03 +00:00
result = "do lu ma me gi ve sa\n"
2013-04-01 08:15:41 +00:00
end
2013-03-30 21:34:54 +00:00
for i = 1, first_day_in_week do
result = result .. " "
end
local this_month = false
for day = 1, last_day do
local last_in_week = (day + first_day_in_week) % 7 == 0
local day_str = pop_spaces("", day, 2) .. (last_in_week and "" or " ")
if cal_month == now.month and cal_year == now.year and day == now.day then
this_month = true
result = result ..
string.format('<span weight="bold" foreground = "%s">%s</span>',
today_color, day_str)
else
result = result .. day_str
end
if last_in_week and day ~= last_day then
result = result .. "\n"
end
end
local header
if this_month then
header = os.date("%a, %d %b %Y")
else
header = os.date("%B %Y", first_day)
end
return header, string.format('<span font="%s" foreground="%s">%s</span>',
theme.font, text_color, result)
end
local function calculate_char_width()
return beautiful.get_font_height(theme.font) * 0.555
end
function remove_calendar()
if calendar ~= nil then
naughty.destroy(calendar)
calendar = nil
offset = 0
end
end
2013-04-01 08:15:41 +00:00
function add_calendar(inc_offset)
2013-03-30 21:34:54 +00:00
inc_offset = inc_offset or 0
local save_offset = offset
2013-03-30 22:28:06 +00:00
remove_calendar()
2013-03-30 21:34:54 +00:00
offset = save_offset + inc_offset
local char_width = char_width or calculate_char_width()
local header, cal_text = create_calendar()
calendar = naughty.notify({ title = header,
text = cal_text,
timeout = 0, hover_timeout = 0.5,
2013-04-16 20:57:09 +00:00
bg = "#060606"
2013-03-30 21:34:54 +00:00
})
end
2013-03-31 15:39:26 +00:00
function show_calendar(t_out)
2013-03-30 22:28:06 +00:00
remove_calendar()
2013-03-30 21:34:54 +00:00
local char_width = char_width or calculate_char_width()
local header, cal_text = create_calendar()
calendar = naughty.notify({ title = header,
text = cal_text,
timeout = t_out,
2013-04-16 20:57:09 +00:00
bg = "#060606"
2013-03-30 21:34:54 +00:00
})
end
2013-04-01 08:15:41 +00:00
mytextclock:connect_signal("mouse::enter", function() add_calendar(0) end)
2013-03-30 21:34:54 +00:00
mytextclock:connect_signal("mouse::leave", remove_calendar)
2013-04-01 08:15:41 +00:00
mytextclock:buttons(util.table.join( awful.button({ }, 1, function() add_calendar(-1) end),
awful.button({ }, 3, function() add_calendar(1) end)))
2013-03-30 21:34:54 +00:00
-- GMail widget
mygmail = wibox.widget.textbox()
2013-04-01 11:59:17 +00:00
gmail_t = awful.tooltip({ objects = { mygmail },})
2013-03-30 21:34:54 +00:00
notify_shown = false
2013-04-28 09:25:03 +00:00
mailcount = 0
2013-03-30 21:34:54 +00:00
vicious.register(mygmail, vicious.widgets.gmail,
function (widget, args)
2013-04-01 11:59:17 +00:00
gmail_t:set_text(args["{subject}"])
gmail_t:add_to_object(mygmail)
2013-04-02 11:43:50 +00:00
notify_title = ""
notify_text = ""
2013-05-02 12:03:22 +00:00
mailcount = args["{count}"]
2013-03-30 21:34:54 +00:00
if (args["{count}"] > 0 ) then
if (notify_shown == false) then
2013-04-02 11:43:50 +00:00
-- Italian localization
-- can be a stub for your own localization
2013-03-30 21:34:54 +00:00
if (args["{count}"] == 1) then
2013-04-02 11:43:50 +00:00
if language:find("it_IT") ~= nil
then
notify_title = "Hai un nuovo messaggio"
else
notify_title = "You got a new mail"
end
2013-03-30 21:34:54 +00:00
notify_text = '"' .. args["{subject}"] .. '"'
else
2013-04-02 11:43:50 +00:00
if language:find("it_IT") ~= nil
then
notify_title = "Hai " .. args["{count}"] .. " nuovi messaggi"
notify_text = 'Ultimo: "' .. args["{subject}"] .. '"'
else
notify_title = "You got " .. args["{count}"] .. " new mails"
notify_text = 'Last one: "' .. args["{subject}"] .. '"'
end
2013-03-30 21:34:54 +00:00
end
2013-04-09 10:10:03 +00:00
naughty.notify({
2013-04-02 11:43:50 +00:00
title = notify_title,
text = notify_text,
2013-03-30 21:34:54 +00:00
timeout = 7,
position = "top_left",
icon = beautiful.widget_mail_notify,
fg = beautiful.taglist_fg_focus,
2013-04-16 20:57:09 +00:00
bg = "#060606"
2013-04-02 11:43:50 +00:00
})
2013-03-30 21:34:54 +00:00
notify_shown = true
end
2013-05-09 11:41:34 +00:00
if yawn.icon == yawn.sky_na then return gray .. " Mail " .. coldef .. white .. args["{count}"] .. " " .. coldef
else return gray .. " Mail " .. coldef .. white .. args["{count}"] .. coldef .. " <span font='Tamsyn 5'> </span><span font='Tamsyn 3'> </span>"
2013-04-17 09:36:06 +00:00
end
2013-03-30 21:34:54 +00:00
else
notify_shown = false
return ''
end
end, 60)
mygmail:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail, false) end)))
-- Mpd widget
mpdwidget = wibox.widget.textbox()
mpdwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(musicplr) end)))
curr_track = nil
vicious.register(mpdwidget, vicious.widgets.mpd,
function(widget, args)
2013-04-28 09:25:03 +00:00
if args["{state}"] == "Play" then
if args["{Title}"] ~= curr_track
then
2013-03-30 21:34:54 +00:00
curr_track = args["{Title}"]
2013-04-16 19:29:22 +00:00
os.execute(scriptdir .. "mpdinfo")
old_id = naughty.notify({
title = "Now playing",
text = args["{Artist}"] .. " (" .. args["{Album}"] .. ")\n" .. args["{Title}"],
icon = "/tmp/mpdnotify_cover.png",
bg = "#060606",
timeout = 5,
replaces_id = old_id
}).id
2013-03-30 21:34:54 +00:00
end
2013-05-09 11:41:34 +00:00
if yawn.icon == yawn.sky_na then return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. " " .. coldef
2013-06-06 10:43:28 +00:00
elseif mailcount == 0 then return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. "<span font='Tamsyn 8'> <span font ='Tamsyn 2'> </span></span>" .. coldef
2013-05-09 11:41:34 +00:00
else return gray .. args["{Artist}"] .. coldef .. white .. " " .. args["{Title}"] .. coldef .. "<span font='Tamsyn 8'> <span font='Tamsyn 2'> </span></span>"
2013-04-25 00:24:31 +00:00
end
2013-04-28 09:25:03 +00:00
elseif args["{state}"] == "Pause" then
2013-05-09 11:41:34 +00:00
if mailcount == 0 then return gray .. "mpd " .. coldef .. white .. "in pausa<span font='Tamsyn 6'> </span> " .. coldef
else return gray .. "mpd " .. coldef .. white .. "in pausa " .. coldef
2013-04-25 00:24:31 +00:00
end
2013-03-30 21:34:54 +00:00
else
curr_track = nil
return ''
end
end, 1)
-- /home fs widget
fshwidget = wibox.widget.textbox()
too_much = false
vicious.register(fshwidget, vicious.widgets.fs,
function (widget, args)
if ( args["{/home used_p}"] >= 90 ) then
if ( args["{/home used_p}"] >= 99 and too_much == false ) then
naughty.notify({ title = "Attenzione", text = "Partizione /home esaurita!\nFa' un po' di spazio.",
timeout = 7,
position = "top_right",
fg = beautiful.fg_urgent,
bg = beautiful.bg_urgent })
too_much = true
end
return gray .. " Hdd " .. coldef .. white .. args["{/home used_p}"] .. coldef .. " "
else
return ""
end
end, 600)
-- hhd status notification
local infos = nil
function remove_info()
if infos ~= nil then
naughty.destroy(infos)
infos = nil
end
end
2013-03-31 15:39:26 +00:00
function show_info(t_out)
2013-03-30 21:34:54 +00:00
remove_info()
local capi = {
mouse = mouse,
screen = screen
}
2013-04-01 08:15:41 +00:00
local hdd = awful.util.pread(scriptdir .. "dfs")
hdd = string.gsub(hdd, " ^%s*(.-)%s*$", "%1")
2013-04-09 10:10:03 +00:00
2013-04-01 08:15:41 +00:00
-- Italian localization
-- can be a stub for your own localization
2013-04-02 11:43:50 +00:00
if language:find("it_IT") ~= nil
2013-04-01 08:15:41 +00:00
then
hdd = string.gsub(hdd, "Used ", "Usato")
hdd = string.gsub(hdd, "Free ", "Libero")
hdd = string.gsub(hdd, "Total ", "Totale")
end
2013-04-09 10:10:03 +00:00
2013-03-30 21:34:54 +00:00
infos = naughty.notify({
2013-04-01 08:15:41 +00:00
text = hdd,
2013-03-30 21:34:54 +00:00
timeout = t_out,
position = "top_right",
margin = 10,
height = 210,
width = 680,
2013-04-16 20:57:09 +00:00
bg = "#060606",
screen = capi.mouse.screen
2013-03-30 21:34:54 +00:00
})
end
2013-03-31 15:39:26 +00:00
fshwidget:connect_signal('mouse::enter', function () show_info(0) end)
2013-03-30 21:34:54 +00:00
fshwidget:connect_signal('mouse::leave', function () remove_info() end)
-- Battery widget
batwidget = wibox.widget.textbox()
function batstate()
local file = io.open("/sys/class/power_supply/BAT0/status", "r")
if (file == nil) then
return "Cable plugged"
end
local batstate = file:read("*line")
file:close()
if (batstate == 'Discharging' or batstate == 'Charging') then
return batstate
else
return "Fully charged"
end
end
vicious.register(batwidget, vicious.widgets.bat,
function (widget, args)
-- plugged
2013-07-22 22:59:23 +00:00
if (batstate() == 'Cable plugged' or batstate() == 'Unknown') then
2013-03-30 21:34:54 +00:00
return ''
-- critical
elseif (args[2] <= 5 and batstate() == 'Discharging') then
2013-04-01 08:15:41 +00:00
naughty.notify{
2013-03-30 21:34:54 +00:00
text = "sto per spegnermi...",
title = "Carica quasi esaurita!",
position = "top_right",
timeout = 0,
fg="#000000",
bg="#ffffff",
screen = 1,
ontop = true,
2013-04-01 08:15:41 +00:00
}
2013-03-30 21:34:54 +00:00
-- low
elseif (args[2] <= 10 and batstate() == 'Discharging') then
naughty.notify({
text = "attacca il cavo!",
title = "Carica bassa",
position = "top_right",
timeout = 0,
fg="#ffffff",
bg="#262729",
screen = 1,
ontop = true,
})
end
return gray .. "Bat " .. coldef .. white .. args[2] .. " " .. coldef
end, 1, 'BAT0')
-- Volume widget
volumewidget = wibox.widget.textbox()
vicious.register(volumewidget, vicious.widgets.volume,
function (widget, args)
if (args[2] ~= "♩" ) then
return gray .. "Vol " .. coldef .. white .. args[1] .. " " .. coldef
else
return gray .. "Vol " .. coldef .. white .. "mute " .. coldef
end
end, 1, "Master")
-- Net checker widget
no_net_shown = true
netwidget = wibox.widget.textbox()
2013-04-09 10:10:03 +00:00
vicious.register(netwidget, vicious.widgets.net,
2013-03-30 21:34:54 +00:00
function (widget, args)
if args["{wlan0 carrier}"] == 0 then
if no_net_shown == true then
naughty.notify({ title = "wlan0", text = "No carrier",
timeout = 7,
position = "top_left",
icon = beautiful.widget_no_net_notify,
fg = "#ff5e5e",
2013-04-17 09:36:06 +00:00
bg = "#060606" })
2013-03-30 21:34:54 +00:00
no_net_shown = false
end
2013-04-01 08:15:41 +00:00
return gray .. " Net " .. coldef .. "<span color='#e54c62'>Off " .. coldef
2013-03-30 21:34:54 +00:00
else
no_net_shown = true
return ''
end
end, 10)
netwidget:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn_with_shell(wifi) end)))
-- Weather widget
2013-04-22 15:13:19 +00:00
yawn.register(123456) -- https//github.com/copycat-killer/yawn
2013-03-30 21:34:54 +00:00
-- Separators
spr = wibox.widget.textbox(' ')
2013-04-25 00:24:31 +00:00
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)
2013-03-30 21:34:54 +00:00
2013-04-26 17:09:55 +00:00
2013-03-30 21:34:54 +00:00
-- Layout
-- 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()
2013-04-02 12:32:47 +00:00
-- Create an imagebox widget which will contains an icon indicating which layout we're using.
2013-03-30 21:34:54 +00:00
-- We need one layoutbox per screen.
mylayoutbox[s] = awful.widget.layoutbox(s)
mylayoutbox[s]:buttons(awful.util.table.join(
2013-04-02 12:32:47 +00:00
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)))
2013-03-30 21:34:54 +00:00
-- 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-04-02 12:32:47 +00:00
-- Create the wibox
2013-04-06 09:43:42 +00:00
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 18 })
2013-03-30 21:34:54 +00:00
-- Widgets that are aligned to the upper left
local left_layout = wibox.layout.fixed.horizontal()
2013-04-25 00:24:31 +00:00
left_layout:add(first)
2013-03-30 21:34:54 +00:00
left_layout:add(mytaglist[s])
2013-04-25 00:24:31 +00:00
left_layout:add(arrl_pre)
2013-03-30 21:34:54 +00:00
left_layout:add(mylayoutbox[s])
2013-04-25 00:24:31 +00:00
left_layout:add(arrl_post)
2013-03-30 21:34:54 +00:00
left_layout:add(mypromptbox[s])
2013-04-25 00:24:31 +00:00
left_layout:add(first)
2013-03-30 21:34:54 +00:00
-- Widgets that are aligned to the upper right
local right_layout = wibox.layout.fixed.horizontal()
if s == 1 then right_layout:add(wibox.widget.systray()) end
2013-04-25 00:24:31 +00:00
right_layout:add(first)
2013-03-30 21:34:54 +00:00
right_layout:add(mpdwidget)
right_layout:add(mygmail)
2013-04-22 15:13:19 +00:00
right_layout:add(yawn.icon)
right_layout:add(yawn.widget)
2013-03-30 21:34:54 +00:00
right_layout:add(fshwidget)
2013-06-23 07:34:30 +00:00
right_layout:add(batwidget)
right_layout:add(netwidget)
2013-03-30 21:34:54 +00:00
right_layout:add(spr)
right_layout:add(volumewidget)
right_layout:add(spr)
right_layout:add(mytextclock)
right_layout:add(spr)
-- 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)
2013-04-02 12:32:47 +00:00
2013-03-30 21:34:54 +00:00
mywibox[s]:set_widget(layout)
end
-- Mouse Bindings
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)
))
-- Key bindings
globalkeys = awful.util.table.join(
-- Capture a screenshot
awful.key({ altkey }, "p", function() awful.util.spawn("screenshot",false) end),
-- Move clients
2013-05-08 19:18:49 +00:00
--awful.key({ altkey }, "Next", function () awful.client.moveresize( 1, 1, -2, -2) end),
--awful.key({ altkey }, "Prior", function () awful.client.moveresize(-1, -1, 2, 2) end),
--awful.key({ altkey }, "Down", function () awful.client.moveresize( 0, 1, 0, 0) end),
--awful.key({ altkey }, "Up", function () awful.client.moveresize( 0, -1, 0, 0) end),
--awful.key({ altkey }, "Left", function () awful.client.moveresize(-1, 0, 0, 0) end),
--awful.key({ altkey }, "Right", function () awful.client.moveresize( 1, 0, 0, 0) end),
2013-03-30 21:34:54 +00:00
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, }, "k",
function ()
awful.client.focus.byidx( 1)
if client.focus then client.focus:raise() end
end),
awful.key({ modkey, }, "j",
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),
-- Show/Hide Wibox
awful.key({ modkey }, "b", function ()
2013-04-09 10:10:03 +00:00
mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
2013-03-30 21:34:54 +00:00
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", function () awful.util.spawn(terminal) end),
awful.key({ modkey, "Control" }, "r", awesome.restart),
awful.key({ modkey, "Shift" }, "q", awesome.quit),
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),
awful.key({ modkey, "Control" }, "n", awful.client.restore),
-- Dropdown terminal
awful.key({ modkey, }, "z", function () scratch.drop(terminal) end),
-- Widgets popups
2013-03-31 15:39:26 +00:00
awful.key({ altkey, }, "c", function () show_calendar(7) end),
awful.key({ altkey, }, "h", function ()
vicious.force({ fshwidget })
show_info(7)
end),
2013-04-22 15:13:19 +00:00
awful.key({ altkey, }, "w", function () yawn.show_weather(5) end),
2013-03-30 21:34:54 +00:00
-- Volume control
2013-05-21 15:16:48 +00:00
awful.key({ altkey }, "Up", function ()
2013-03-30 21:34:54 +00:00
awful.util.spawn("amixer set Master playback 1%+", false )
vicious.force({ volumewidget })
end),
2013-05-21 15:16:48 +00:00
awful.key({ altkey }, "Down", function ()
2013-03-30 21:34:54 +00:00
awful.util.spawn("amixer set Master playback 1%-", false )
vicious.force({ volumewidget })
end),
2013-05-21 15:16:48 +00:00
awful.key({ altkey }, "m", function ()
2013-05-05 11:09:22 +00:00
awful.util.spawn("amixer set Master playback toggle", false )
2013-03-30 21:34:54 +00:00
vicious.force({ volumewidget })
end),
2013-05-21 15:16:48 +00:00
awful.key({ altkey, "Control" }, "m",
2013-04-09 10:10:03 +00:00
function ()
awful.util.spawn("amixer set Master playback 100%", false )
vicious.force({ volumewidget })
2013-03-30 21:34:54 +00:00
end),
-- Music control
2013-04-09 10:10:03 +00:00
awful.key({ altkey, "Control" }, "Up", function ()
awful.util.spawn( "mpc toggle", false )
2013-03-30 21:34:54 +00:00
vicious.force({ mpdwidget } )
end),
2013-04-09 10:10:03 +00:00
awful.key({ altkey, "Control" }, "Down", function ()
awful.util.spawn( "mpc stop", false )
2013-03-30 21:34:54 +00:00
vicious.force({ mpdwidget } )
end ),
awful.key({ altkey, "Control" }, "Left", function ()
awful.util.spawn( "mpc prev", false )
vicious.force({ mpdwidget } )
end ),
2013-04-09 10:10:03 +00:00
awful.key({ altkey, "Control" }, "Right", function ()
2013-03-30 21:34:54 +00:00
awful.util.spawn( "mpc next", false )
vicious.force({ mpdwidget } )
end ),
-- Copy to clipboard
awful.key({ modkey }, "c", function () os.execute("xsel -p -o | xsel -i -b") end),
2013-03-30 21:34:54 +00:00
-- User programs
awful.key({ modkey }, "q", function () awful.util.spawn( "dwb", false ) end),
awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end),
2013-03-30 21:34:54 +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)
)
-- 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
2013-03-30 21:34:54 +00:00
-- 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
2013-03-30 21:34:54 +00:00
globalkeys = awful.util.table.join(globalkeys,
awful.key({ modkey }, "#" .. i + 9,
function ()
screen = mouse.screen
if tags[screen][i] then
awful.tag.viewonly(tags[screen][i])
2013-03-30 21:34:54 +00:00
end
end),
awful.key({ modkey, "Control" }, "#" .. i + 9,
function ()
screen = mouse.screen
if tags[screen][i] then
awful.tag.viewtoggle(tags[screen][i])
end
2013-03-30 21:34:54 +00:00
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])
2013-03-30 21:34:54 +00:00
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])
2013-03-30 21:34:54 +00:00
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,
2013-04-02 12:32:47 +00:00
focus = awful.client.focus.filter,
2013-03-30 21:34:54 +00:00
keys = clientkeys,
buttons = clientbuttons,
size_hints_honor = false
}
},
2013-04-09 10:10:03 +00:00
2013-03-30 21:34:54 +00:00
{ rule = { class = "URxvt" },
2013-05-21 14:22:10 +00:00
properties = { opacity = 0.95 } },
2013-03-30 21:34:54 +00:00
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "Dwb" },
2013-04-16 19:29:22 +00:00
properties = { tag = tags[1][1] } },
2013-03-30 21:34:54 +00:00
2013-04-25 00:24:31 +00:00
{ rule = { class = "Gimp" },
properties = { tag = tags[1][4] } },
2013-04-12 11:05:02 +00:00
{ rule = { class = "Gimp", role = "gimp-image-window" },
2013-04-18 13:37:05 +00:00
properties = { maximized_horizontal = true,
2013-04-12 11:20:35 +00:00
maximized_vertical = true } },
2013-04-12 11:05:02 +00:00
2013-03-30 21:34:54 +00:00
{ rule = { class = "Transmission-gtk" },
properties = { tag = tags[1][5] } },
{ rule = { class = "Torrent-search" },
properties = { tag = tags[1][5] } },
}
-- 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)
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
local titlebars_enabled = false
if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
2013-04-02 12:32:47 +00:00
-- buttons for the titlebar
local buttons = awful.util.table.join(
awful.button({ }, 1, function()
client.focus = c
c:raise()
awful.mouse.client.move(c)
end),
awful.button({ }, 3, function()
client.focus = c
c:raise()
awful.mouse.client.resize(c)
end)
)
2013-03-30 21:34:54 +00:00
-- Widgets that are aligned to the left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(awful.titlebar.widget.iconwidget(c))
2013-04-02 12:32:47 +00:00
left_layout:buttons(buttons)
2013-03-30 21:34:54 +00:00
-- Widgets that are aligned to the right
local right_layout = wibox.layout.fixed.horizontal()
right_layout:add(awful.titlebar.widget.floatingbutton(c))
right_layout:add(awful.titlebar.widget.maximizedbutton(c))
right_layout:add(awful.titlebar.widget.stickybutton(c))
right_layout:add(awful.titlebar.widget.ontopbutton(c))
right_layout:add(awful.titlebar.widget.closebutton(c))
-- The title goes in the middle
2013-04-02 12:32:47 +00:00
local middle_layout = wibox.layout.flex.horizontal()
2013-03-30 21:34:54 +00:00
local title = awful.titlebar.widget.titlewidget(c)
2013-04-02 12:32:47 +00:00
title:set_align("center")
middle_layout:add(title)
middle_layout:buttons(buttons)
2013-03-30 21:34:54 +00:00
-- Now bring it all together
local layout = wibox.layout.align.horizontal()
layout:set_left(left_layout)
layout:set_right(right_layout)
2013-04-02 12:32:47 +00:00
layout:set_middle(middle_layout)
2013-03-30 21:34:54 +00:00
awful.titlebar(c):set_widget(layout)
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)