1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2025-01-11 02:08:08 +00:00
awesome-copycats/rc.lua.multicolor

472 lines
16 KiB
Plaintext
Raw Normal View History

2013-09-13 19:20:22 +00:00
--[[
Multicolor Awesome WM config 2.0
github.com/copycat-killer
2013-09-13 19:20:22 +00:00
--]]
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- {{{ Required libraries
local gears = require("gears")
local awful = require("awful")
2013-03-27 13:25:02 +00:00
awful.rules = require("awful.rules")
2013-09-13 19:20:22 +00:00
require("awful.autofocus")
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-03-27 13:25:02 +00:00
-- }}}
-- Error handling
require("myrc.errors")
2013-03-27 13:25:02 +00:00
-- STARTUP apps
require("settings.startup")
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- {{{ Variable definitions
-- localization
os.setlocale(os.getenv("LANG"))
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- beautiful init
2013-11-24 15:31:33 +00:00
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/multicolor/theme.lua")
2013-03-27 13:25:02 +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-03-27 13:25:02 +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"
mail = terminal .. " -e mutt "
layouts = {
2013-09-13 19:20:22 +00:00
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,
2013-03-27 13:25:02 +00:00
}
2013-09-13 19:20:22 +00:00
-- }}}
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- {{{ Tags
tags = {
names = { "web", "term", "docs", "media", "files", "other" },
layout = { layouts[1], layouts[3], layouts[4], layouts[1], layouts[7], layouts[1] }
}
for s = 1, screen.count() do
-- Each screen has its own tag table.
tags[s] = awful.tag(tags.names, s, tags.layout)
end
2013-03-27 13:25:02 +00:00
-- }}}
-- {{{ Wallpaper
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
-- {{{ Freedesktop Menu
require("freedesktop/freedesktop")
2013-03-27 13:25:02 +00:00
-- }}}
-- {{{ Wibox
2013-09-13 19:20:22 +00:00
markup = lain.util.markup
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- Textclock
clockicon = wibox.widget.imagebox(beautiful.widget_clock)
mytextclock = awful.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#343639", ">") .. markup("#de5e1e", " %H:%M "))
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- Calendar
lain.widgets.calendar:attach(mytextclock, { font_size = 10 })
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- Weather
weathericon = wibox.widget.imagebox(beautiful.widget_weather)
yawn = lain.widgets.yawn(123456, {
settings = function()
widget:set_markup(markup("#eca4c4", forecast:lower() .. " @ " .. units .. "°C "))
end
})
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- / fs
fsicon = wibox.widget.imagebox(beautiful.widget_fs)
fswidget = lain.widgets.fs({
settings = function()
2013-10-02 14:25:08 +00:00
widget:set_markup(markup("#80d9d8", fs_now.used .. "% "))
2013-09-13 19:20:22 +00:00
end
})
--[[ Mail IMAP check
-- commented because it needs to be set before use
mailicon = wibox.widget.imagebox()
mailicon:buttons(awful.util.table.join(awful.button({ }, 1, function () awful.util.spawn(mail) end)))
mailwidget = lain.widgets.imap({
timeout = 180,
server = "server",
mail = "mail",
password = "keyring get mail",
settings = function()
if mailcount > 0 then
mailicon:set_image(beautiful.widget_mail)
widget:set_markup(markup("#cccccc", mailcount .. " "))
else
widget:set_text("")
mailicon:set_image(nil)
end
end
})
]]
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- CPU
cpuicon = wibox.widget.imagebox()
cpuicon:set_image(beautiful.widget_cpu)
cpuwidget = lain.widgets.cpu({
settings = function()
widget:set_markup(markup("#e33a6e", cpu_now.usage .. "% "))
end
})
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- Coretemp
tempicon = wibox.widget.imagebox(beautiful.widget_temp)
tempwidget = lain.widgets.temp({
settings = function()
widget:set_markup(markup("#f1af5f", coretemp_now .. "°C "))
end
})
-- Battery
baticon = wibox.widget.imagebox(beautiful.widget_batt)
batwidget = lain.widgets.bat({
settings = function()
if bat_now.perc == "N/A" then
bat_now.perc = "AC "
2013-03-27 13:25:02 +00:00
else
2013-09-13 19:20:22 +00:00
bat_now.perc = bat_now.perc .. "% "
2013-03-27 13:25:02 +00:00
end
2013-09-13 19:20:22 +00:00
widget:set_text(bat_now.perc)
end
})
-- ALSA volume
volicon = wibox.widget.imagebox(beautiful.widget_vol)
volumewidget = lain.widgets.alsa({
settings = function()
if volume_now.status == "off" then
volume_now.level = volume_now.level .. "M"
2013-03-27 13:25:02 +00:00
end
2013-09-13 19:20:22 +00:00
widget:set_markup(markup("#7493d2", volume_now.level .. "% "))
2013-03-27 13:25:02 +00:00
end
2013-09-13 19:20:22 +00:00
})
2013-03-27 13:25:02 +00:00
-- Net
2013-09-13 19:20:22 +00:00
netdownicon = wibox.widget.imagebox(beautiful.widget_netdown)
--netdownicon.align = "middle"
netdowninfo = wibox.widget.textbox()
netupicon = wibox.widget.imagebox(beautiful.widget_netup)
--netupicon.align = "middle"
netupinfo = lain.widgets.net({
settings = function()
widget:set_markup(markup("#e54c62", net_now.sent .. " "))
netdowninfo:set_markup(markup("#87af5f", net_now.received .. " "))
end
})
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- MEM
memicon = wibox.widget.imagebox(beautiful.widget_mem)
memwidget = lain.widgets.mem({
settings = function()
widget:set_markup(markup("#e0da37", mem_now.used .. "M "))
end
})
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- MPD
2013-03-27 13:25:02 +00:00
mpdicon = wibox.widget.imagebox()
2013-09-13 19:20:22 +00:00
mpdwidget = lain.widgets.mpd({
settings = function()
mpd_notification_preset = {
text = string.format("%s [%s] - %s\n%s", mpd_now.artist,
mpd_now.album, mpd_now.date, mpd_now.title)
}
if mpd_now.state == "play" then
artist = mpd_now.artist .. " > "
title = mpd_now.title .. " "
mpdicon:set_image(beautiful.widget_note_on)
elseif mpd_now.state == "pause" then
artist = "mpd "
title = "paused "
else
artist = ""
title = ""
mpdicon:set_image(nil)
end
widget:set_markup(markup("#e54c62", artist) .. markup("#b2b2b2", title))
end
})
2013-03-27 13:25:02 +00:00
-- Spacer
spacer = wibox.widget.textbox(" ")
-- }}}
-- {{{ Layout
-- Create a wibox for each screen and add it
mywibox = {}
mybottomwibox = {}
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
2013-03-27 13:25:02 +00:00
-- Create a promptbox for each screen
mypromptbox[s] = awful.widget.prompt()
2013-03-27 13:25:02 +00:00
-- 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)
-- Create the upper wibox
mywibox[s] = awful.wibox({ position = "top", screen = s, height = 20 })
2013-03-27 13:25:02 +00:00
--border_width = 0, height = 20 })
2013-03-27 13:25:02 +00:00
-- Widgets that are aligned to the upper left
local left_layout = wibox.layout.fixed.horizontal()
left_layout:add(mytaglist[s])
left_layout:add(mypromptbox[s])
left_layout:add(mpdicon)
left_layout:add(mpdwidget)
-- 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-09-13 19:20:22 +00:00
--right_layout:add(mailicon)
--right_layout:add(mailwidget)
2013-03-27 13:25:02 +00:00
right_layout:add(netdownicon)
right_layout:add(netdowninfo)
right_layout:add(netupicon)
right_layout:add(netupinfo)
right_layout:add(volicon)
right_layout:add(volumewidget)
right_layout:add(memicon)
right_layout:add(memwidget)
right_layout:add(cpuicon)
right_layout:add(cpuwidget)
2013-09-13 19:20:22 +00:00
right_layout:add(fsicon)
right_layout:add(fswidget)
2013-03-27 13:25:02 +00:00
right_layout:add(weathericon)
2013-09-13 19:20:22 +00:00
right_layout:add(yawn.widget)
2013-03-27 13:25:02 +00:00
right_layout:add(tempicon)
right_layout:add(tempwidget)
right_layout:add(baticon)
right_layout:add(batwidget)
right_layout:add(clockicon)
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)
2013-03-27 13:25:02 +00:00
mywibox[s]:set_widget(layout)
-- Create the bottom wibox
mybottomwibox[s] = awful.wibox({ position = "bottom", screen = s, border_width = 0, height = 20 })
--mybottomwibox[s].visible = false
2013-03-27 13:25:02 +00:00
-- Widgets that are aligned to the bottom left
bottom_left_layout = wibox.layout.fixed.horizontal()
2013-03-27 13:25:02 +00:00
-- Widgets that are aligned to the bottom right
bottom_right_layout = wibox.layout.fixed.horizontal()
bottom_right_layout:add(mylayoutbox[s])
2013-03-27 13:25:02 +00:00
-- Now bring it all together (with the tasklist in the middle)
bottom_layout = wibox.layout.align.horizontal()
bottom_layout:set_left(bottom_left_layout)
bottom_layout:set_middle(mytasklist[s])
bottom_layout:set_right(bottom_right_layout)
mybottomwibox[s]:set_widget(bottom_layout)
end
-- }}}
-- Bindings
require("settings.binds")
2013-03-27 13:25:02 +00:00
-- {{{ Key bindings
globalkeys = awful.util.table.join(globalkeys,
2013-03-27 13:25:02 +00:00
-- Show/Hide Wibox
awful.key({ modkey }, "b", function ()
2013-09-13 19:20:22 +00:00
mywibox[mouse.screen].visible = not mywibox[mouse.screen].visible
2013-09-13 21:08:18 +00:00
mybottomwibox[mouse.screen].visible = not mybottomwibox[mouse.screen].visible
2013-03-30 21:34:54 +00:00
end),
2013-03-27 13:25:02 +00:00
2013-09-13 19:20:22 +00:00
-- Widgets popups
awful.key({ altkey, }, "c", function () lain.widgets.calendar:show(7) end),
awful.key({ altkey, }, "h", function () fswidget.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),
awful.key({ altkey, "Control" }, "m",
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-03-30 21:34:54 +00:00
-- Copy to clipboard
2013-09-13 19:20:22 +00:00
awful.key({ modkey }, "c", function () os.execute("xsel -p -o | xsel -i -b") end),
2013-03-30 21:34:54 +00:00
-- User programs
2013-09-13 19:20:22 +00:00
awful.key({ modkey }, "q", function () awful.util.spawn(browser) end),
awful.key({ modkey }, "i", function () awful.util.spawn(browser2) end),
awful.key({ modkey }, "s", function () awful.util.spawn(gui_editor) end),
awful.key({ modkey }, "g", function () awful.util.spawn(graphics) end),
2013-03-27 13:25:02 +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)
-- }}}
-- Rules
require("settings.rules")
2013-03-27 13:25:02 +00:00
-- Signals
require("myrc.signals")