+
+--]]
+
+local helpers = require("lain.helpers")
+local shell = require("awful.util").shell
+local escape_f = require("awful.util").escape
+local focused = require("awful.screen").focused
+local naughty = require("naughty")
+local wibox = require("wibox")
+local os = os
+local string = string
+
+-- MPD infos
+-- lain.widget.mpd
+
+local function factory(args)
+ args = args or {}
+
+ local mpd = { widget = args.widget or wibox.widget.textbox() }
+ local timeout = args.timeout or 2
+ local password = (args.password and #args.password > 0 and string.format("password %s\\n", args.password)) or ""
+ local host = args.host or os.getenv("MPD_HOST") or "127.0.0.1"
+ local port = args.port or os.getenv("MPD_PORT") or "6600"
+ local music_dir = args.music_dir or os.getenv("HOME") .. "/Music"
+ local cover_pattern = args.cover_pattern or "*\\.(jpg|jpeg|png|gif)$"
+ local cover_size = args.cover_size or 100
+ local default_art = args.default_art
+ local notify = args.notify or "on"
+ local followtag = args.followtag or false
+ local settings = args.settings or function() end
+
+ local mpdh = string.format("telnet://%s:%s", host, port)
+ local echo = string.format("printf \"%sstatus\\ncurrentsong\\nclose\\n\"", password)
+ local cmd = string.format("%s | curl --connect-timeout 1 -fsm 3 %s", echo, mpdh)
+
+ mpd_notification_preset = { title = "Now playing", timeout = 6 }
+
+ helpers.set_map("current mpd track", nil)
+
+ function mpd.update()
+ helpers.async({ shell, "-c", cmd }, function(f)
+ mpd_now = {
+ random_mode = false,
+ single_mode = false,
+ repeat_mode = false,
+ consume_mode = false,
+ pls_pos = "N/A",
+ pls_len = "N/A",
+ state = "N/A",
+ file = "N/A",
+ name = "N/A",
+ artist = "N/A",
+ title = "N/A",
+ album = "N/A",
+ genre = "N/A",
+ track = "N/A",
+ date = "N/A",
+ time = "N/A",
+ elapsed = "N/A",
+ volume = "N/A"
+ }
+
+ for line in string.gmatch(f, "[^\n]+") do
+ for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
+ if k == "state" then mpd_now.state = v
+ elseif k == "file" then mpd_now.file = v
+ elseif k == "Name" then mpd_now.name = escape_f(v)
+ elseif k == "Artist" then mpd_now.artist = escape_f(v)
+ elseif k == "Title" then mpd_now.title = escape_f(v)
+ elseif k == "Album" then mpd_now.album = escape_f(v)
+ elseif k == "Genre" then mpd_now.genre = escape_f(v)
+ elseif k == "Track" then mpd_now.track = escape_f(v)
+ elseif k == "Date" then mpd_now.date = escape_f(v)
+ elseif k == "Time" then mpd_now.time = v
+ elseif k == "elapsed" then mpd_now.elapsed = string.match(v, "%d+")
+ elseif k == "song" then mpd_now.pls_pos = v
+ elseif k == "playlistlength" then mpd_now.pls_len = v
+ elseif k == "repeat" then mpd_now.repeat_mode = v ~= "0"
+ elseif k == "single" then mpd_now.single_mode = v ~= "0"
+ elseif k == "random" then mpd_now.random_mode = v ~= "0"
+ elseif k == "consume" then mpd_now.consume_mode = v ~= "0"
+ elseif k == "volume" then mpd_now.volume = v
+ end
+ end
+ end
+
+ mpd_notification_preset.text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
+ mpd_now.album, mpd_now.date, mpd_now.title)
+ widget = mpd.widget
+ settings()
+
+ if mpd_now.state == "play" then
+ if notify == "on" and mpd_now.title ~= helpers.get_map("current mpd track") then
+ helpers.set_map("current mpd track", mpd_now.title)
+
+ if followtag then mpd_notification_preset.screen = focused() end
+
+ local common = {
+ preset = mpd_notification_preset,
+ icon = default_art,
+ icon_size = cover_size,
+ replaces_id = mpd.id
+ }
+
+ if not string.match(mpd_now.file, "http.*://") then -- local file instead of http stream
+ local path = string.format("%s/%s", music_dir, string.match(mpd_now.file, ".*/"))
+ local cover = string.format("find '%s' -maxdepth 1 -type f | egrep -i -m1 '%s'",
+ path:gsub("'", "'\\''"), cover_pattern)
+ helpers.async({ shell, "-c", cover }, function(current_icon)
+ common.icon = current_icon:gsub("\n", "")
+ if #common.icon == 0 then common.icon = nil end
+ mpd.id = naughty.notify(common).id
+ end)
+ else
+ mpd.id = naughty.notify(common).id
+ end
+
+ end
+ elseif mpd_now.state ~= "pause" then
+ helpers.set_map("current mpd track", nil)
+ end
+ end)
+ end
+
+ mpd.timer = helpers.newtimer("mpd", timeout, mpd.update, true, true)
+
+ return mpd
+end
+
+return factory
diff --git a/awesome/lain/widget/net.lua b/awesome/lain/widget/net.lua
new file mode 100644
index 0000000..49e60f4
--- /dev/null
+++ b/awesome/lain/widget/net.lua
@@ -0,0 +1,121 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2013, Luca CPZ
+ * (c) 2010-2012, Peter Hofmann
+
+--]]
+
+local helpers = require("lain.helpers")
+local naughty = require("naughty")
+local wibox = require("wibox")
+local string = string
+
+-- Network infos
+-- lain.widget.net
+
+local function factory(args)
+ args = args or {}
+
+ local net = { widget = args.widget or wibox.widget.textbox(), devices = {} }
+ local timeout = args.timeout or 2
+ local units = args.units or 1024 -- KB
+ local notify = args.notify or "on"
+ local wifi_state = args.wifi_state or "off"
+ local eth_state = args.eth_state or "off"
+ local screen = args.screen or 1
+ local settings = args.settings or function() end
+
+ -- Compatibility with old API where iface was a string corresponding to 1 interface
+ net.iface = (args.iface and (type(args.iface) == "string" and {args.iface}) or
+ (type(args.iface) == "table" and args.iface)) or {}
+
+ function net.get_devices()
+ net.iface = {} -- reset at every call
+ helpers.line_callback("ip link", function(line)
+ net.iface[#net.iface + 1] = not string.match(line, "LOOPBACK") and string.match(line, "(%w+): <") or nil
+ end)
+ end
+
+ if #net.iface == 0 then net.get_devices() end
+
+ function net.update()
+ -- These are the totals over all specified interfaces
+ net_now = {
+ devices = {},
+ -- Bytes since last iteration
+ sent = 0,
+ received = 0
+ }
+
+ for _, dev in ipairs(net.iface) do
+ local dev_now = {}
+ local dev_before = net.devices[dev] or { last_t = 0, last_r = 0 }
+ local now_t = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/tx_bytes", dev)) or 0)
+ local now_r = tonumber(helpers.first_line(string.format("/sys/class/net/%s/statistics/rx_bytes", dev)) or 0)
+
+ dev_now.carrier = helpers.first_line(string.format("/sys/class/net/%s/carrier", dev)) or "0"
+ dev_now.state = helpers.first_line(string.format("/sys/class/net/%s/operstate", dev)) or "down"
+
+ dev_now.sent = (now_t - dev_before.last_t) / timeout / units
+ dev_now.received = (now_r - dev_before.last_r) / timeout / units
+
+ net_now.sent = net_now.sent + dev_now.sent
+ net_now.received = net_now.received + dev_now.received
+
+ dev_now.sent = string.format("%.1f", dev_now.sent)
+ dev_now.received = string.format("%.1f", dev_now.received)
+
+ dev_now.last_t = now_t
+ dev_now.last_r = now_r
+
+ if wifi_state == "on" and helpers.first_line(string.format("/sys/class/net/%s/uevent", dev)) == "DEVTYPE=wlan" then
+ dev_now.wifi = true
+ if string.match(dev_now.carrier, "1") then
+ dev_now.signal = tonumber(string.match(helpers.lines_from("/proc/net/wireless")[3], "(%-%d+%.)")) or nil
+ end
+ else
+ dev_now.wifi = false
+ end
+
+ if eth_state == "on" and helpers.first_line(string.format("/sys/class/net/%s/uevent", dev)) ~= "DEVTYPE=wlan" then
+ dev_now.ethernet = true
+ else
+ dev_now.ethernet = false
+ end
+
+ net.devices[dev] = dev_now
+
+ -- Notify only once when connection is lost
+ if string.match(dev_now.carrier, "0") and notify == "on" and helpers.get_map(dev) then
+ naughty.notify {
+ title = dev,
+ text = "No carrier",
+ icon = helpers.icons_dir .. "no_net.png",
+ screen = screen
+ }
+ helpers.set_map(dev, false)
+ elseif string.match(dev_now.carrier, "1") then
+ helpers.set_map(dev, true)
+ end
+
+ net_now.carrier = dev_now.carrier
+ net_now.state = dev_now.state
+ net_now.devices[dev] = dev_now
+ -- net_now.sent and net_now.received will be
+ -- the totals across all specified devices
+ end
+
+ net_now.sent = string.format("%.1f", net_now.sent)
+ net_now.received = string.format("%.1f", net_now.received)
+
+ widget = net.widget
+ settings()
+ end
+
+ helpers.newtimer("network", timeout, net.update)
+
+ return net
+end
+
+return factory
diff --git a/awesome/lain/widget/pulse.lua b/awesome/lain/widget/pulse.lua
new file mode 100644
index 0000000..69f4d70
--- /dev/null
+++ b/awesome/lain/widget/pulse.lua
@@ -0,0 +1,58 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2016, Luca CPZ
+
+--]]
+
+local helpers = require("lain.helpers")
+local shell = require("awful.util").shell
+local wibox = require("wibox")
+local string = string
+local type = type
+
+-- PulseAudio volume
+-- lain.widget.pulse
+
+local function factory(args)
+ args = args or {}
+
+ local pulse = { widget = args.widget or wibox.widget.textbox(), device = "N/A" }
+ local timeout = args.timeout or 5
+ local settings = args.settings or function() end
+
+ pulse.devicetype = args.devicetype or "sink"
+ pulse.cmd = args.cmd or "pacmd list-" .. pulse.devicetype .. "s | sed -n -e '/*/,$!d' -e '/index/p' -e '/base volume/d' -e '/volume:/p' -e '/muted:/p' -e '/device\\.string/p'"
+
+ function pulse.update()
+ helpers.async({ shell, "-c", type(pulse.cmd) == "string" and pulse.cmd or pulse.cmd() },
+ function(s)
+ volume_now = {
+ index = string.match(s, "index: (%S+)") or "N/A",
+ device = string.match(s, "device.string = \"(%S+)\"") or "N/A",
+ muted = string.match(s, "muted: (%S+)") or "N/A"
+ }
+
+ pulse.device = volume_now.index
+
+ local ch = 1
+ volume_now.channel = {}
+ for v in string.gmatch(s, ":.-(%d+)%%") do
+ volume_now.channel[ch] = v
+ ch = ch + 1
+ end
+
+ volume_now.left = volume_now.channel[1] or "N/A"
+ volume_now.right = volume_now.channel[2] or "N/A"
+
+ widget = pulse.widget
+ settings()
+ end)
+ end
+
+ helpers.newtimer("pulse", timeout, pulse.update)
+
+ return pulse
+end
+
+return factory
diff --git a/awesome/lain/widget/pulsebar.lua b/awesome/lain/widget/pulsebar.lua
new file mode 100644
index 0000000..19e73b9
--- /dev/null
+++ b/awesome/lain/widget/pulsebar.lua
@@ -0,0 +1,175 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2013, Luca CPZ
+ * (c) 2013, Rman
+
+--]]
+
+local helpers = require("lain.helpers")
+local awful = require("awful")
+local naughty = require("naughty")
+local wibox = require("wibox")
+local math = math
+local string = string
+local type = type
+local tonumber = tonumber
+
+-- PulseAudio volume bar
+-- lain.widget.pulsebar
+
+local function factory(args)
+ local pulsebar = {
+ colors = {
+ background = "#000000",
+ mute_background = "#000000",
+ mute = "#EB8F8F",
+ unmute = "#A4CE8A"
+ },
+
+ _current_level = 0,
+ _mute = "no",
+ device = "N/A"
+ }
+
+ args = args or {}
+
+ local timeout = args.timeout or 5
+ local settings = args.settings or function() end
+ local width = args.width or 63
+ local height = args.height or 1
+ local margins = args.margins or 1
+ local paddings = args.paddings or 1
+ local ticks = args.ticks or false
+ local ticks_size = args.ticks_size or 7
+ local tick = args.tick or "|"
+ local tick_pre = args.tick_pre or "["
+ local tick_post = args.tick_post or "]"
+ local tick_none = args.tick_none or " "
+
+ pulsebar.colors = args.colors or pulsebar.colors
+ pulsebar.followtag = args.followtag or false
+ pulsebar.notification_preset = args.notification_preset
+ pulsebar.devicetype = args.devicetype or "sink"
+ pulsebar.cmd = args.cmd or "pacmd list-" .. pulsebar.devicetype .. "s | sed -n -e '/*/,$!d' -e '/index/p' -e '/base volume/d' -e '/volume:/p' -e '/muted:/p' -e '/device\\.string/p'"
+
+ if not pulsebar.notification_preset then
+ pulsebar.notification_preset = {
+ font = "Monospace 10"
+ }
+ end
+
+ pulsebar.bar = wibox.widget {
+ color = pulsebar.colors.unmute,
+ background_color = pulsebar.colors.background,
+ forced_height = height,
+ forced_width = width,
+ margins = margins,
+ paddings = paddings,
+ ticks = ticks,
+ ticks_size = ticks_size,
+ widget = wibox.widget.progressbar,
+ }
+
+ pulsebar.tooltip = awful.tooltip({ objects = { pulsebar.bar } })
+
+ function pulsebar.update(callback)
+ helpers.async({ awful.util.shell, "-c", type(pulsebar.cmd) == "string" and pulsebar.cmd or pulsebar.cmd() },
+ function(s)
+ volume_now = {
+ index = string.match(s, "index: (%S+)") or "N/A",
+ device = string.match(s, "device.string = \"(%S+)\"") or "N/A",
+ muted = string.match(s, "muted: (%S+)") or "N/A"
+ }
+
+ pulsebar.device = volume_now.index
+
+ local ch = 1
+ volume_now.channel = {}
+ for v in string.gmatch(s, ":.-(%d+)%%") do
+ volume_now.channel[ch] = v
+ ch = ch + 1
+ end
+
+ volume_now.left = volume_now.channel[1] or "N/A"
+ volume_now.right = volume_now.channel[2] or "N/A"
+
+ local volu = volume_now.left
+ local mute = volume_now.muted
+
+ if volu:match("N/A") or mute:match("N/A") then return end
+
+ if volu ~= pulsebar._current_level or mute ~= pulsebar._mute then
+ pulsebar._current_level = tonumber(volu)
+ pulsebar.bar:set_value(pulsebar._current_level / 100)
+ if pulsebar._current_level == 0 or mute == "yes" then
+ pulsebar._mute = mute
+ pulsebar.tooltip:set_text ("[muted]")
+ pulsebar.bar.color = pulsebar.colors.mute
+ pulsebar.bar.background_color = pulsebar.colors.mute_background
+ else
+ pulsebar._mute = "no"
+ pulsebar.tooltip:set_text(string.format("%s %s: %s", pulsebar.devicetype, pulsebar.device, volu))
+ pulsebar.bar.color = pulsebar.colors.unmute
+ pulsebar.bar.background_color = pulsebar.colors.background
+ end
+
+ settings()
+
+ if type(callback) == "function" then callback() end
+ end
+ end)
+ end
+
+ function pulsebar.notify()
+ pulsebar.update(function()
+ local preset = pulsebar.notification_preset
+
+ preset.title = string.format("%s %s - %s%%", pulsebar.devicetype, pulsebar.device, pulsebar._current_level)
+
+ if pulsebar._mute == "yes" then
+ preset.title = preset.title .. " muted"
+ end
+
+ -- tot is the maximum number of ticks to display in the notification
+ -- fallback: default horizontal wibox height
+ local wib, tot = awful.screen.focused().mywibox, 20
+
+ -- if we can grab mywibox, tot is defined as its height if
+ -- horizontal, or width otherwise
+ if wib then
+ if wib.position == "left" or wib.position == "right" then
+ tot = wib.width
+ else
+ tot = wib.height
+ end
+ end
+
+ local int = math.modf((pulsebar._current_level / 100) * tot)
+ preset.text = string.format(
+ "%s%s%s%s",
+ tick_pre,
+ string.rep(tick, int),
+ string.rep(tick_none, tot - int),
+ tick_post
+ )
+
+ if pulsebar.followtag then preset.screen = awful.screen.focused() end
+
+ if not pulsebar.notification then
+ pulsebar.notification = naughty.notify {
+ preset = preset,
+ destroy = function() pulsebar.notification = nil end
+ }
+ else
+ naughty.replace_text(pulsebar.notification, preset.title, preset.text)
+ end
+ end)
+ end
+
+ helpers.newtimer(string.format("pulsebar-%s-%s", pulsebar.devicetype, pulsebar.device), timeout, pulsebar.update)
+
+ return pulsebar
+end
+
+return factory
diff --git a/awesome/lain/widget/sysload.lua b/awesome/lain/widget/sysload.lua
new file mode 100644
index 0000000..7260524
--- /dev/null
+++ b/awesome/lain/widget/sysload.lua
@@ -0,0 +1,39 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2013, Luca CPZ
+ * (c) 2010-2012, Peter Hofmann
+
+--]]
+
+local helpers = require("lain.helpers")
+local wibox = require("wibox")
+local open, match = io.open, string.match
+
+-- System load
+-- lain.widget.sysload
+
+local function factory(args)
+ args = args or {}
+
+ local sysload = { widget = args.widget or wibox.widget.textbox() }
+ local timeout = args.timeout or 2
+ local settings = args.settings or function() end
+
+ function sysload.update()
+ local f = open("/proc/loadavg")
+ local ret = f:read("*all")
+ f:close()
+
+ load_1, load_5, load_15 = match(ret, "([^%s]+) ([^%s]+) ([^%s]+)")
+
+ widget = sysload.widget
+ settings()
+ end
+
+ helpers.newtimer("sysload", timeout, sysload.update)
+
+ return sysload
+end
+
+return factory
diff --git a/awesome/lain/widget/temp.lua b/awesome/lain/widget/temp.lua
new file mode 100644
index 0000000..05723f5
--- /dev/null
+++ b/awesome/lain/widget/temp.lua
@@ -0,0 +1,45 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2013, Luca CPZ
+
+--]]
+
+local helpers = require("lain.helpers")
+local wibox = require("wibox")
+local tonumber = tonumber
+
+-- {thermal,core} temperature info
+-- lain.widget.temp
+
+local function factory(args)
+ args = args or {}
+
+ local temp = { widget = args.widget or wibox.widget.textbox() }
+ local timeout = args.timeout or 30
+ local tempfile = args.tempfile or "/sys/devices/virtual/thermal/thermal_zone0/temp"
+ local settings = args.settings or function() end
+
+ function temp.update()
+ helpers.async({"find", "/sys/devices", "-type", "f", "-name", "*temp*"}, function(f)
+ temp_now = {}
+ local temp_fl, temp_value
+ for t in f:gmatch("[^\n]+") do
+ temp_fl = helpers.first_line(t)
+ if temp_fl then
+ temp_value = tonumber(temp_fl)
+ temp_now[t] = temp_value and temp_value/1e3 or temp_fl
+ end
+ end
+ coretemp_now = temp_now[tempfile] or "N/A"
+ widget = temp.widget
+ settings()
+ end)
+ end
+
+ helpers.newtimer("thermal", timeout, temp.update)
+
+ return temp
+end
+
+return factory
diff --git a/awesome/lain/widget/weather.lua b/awesome/lain/widget/weather.lua
new file mode 100644
index 0000000..c683d42
--- /dev/null
+++ b/awesome/lain/widget/weather.lua
@@ -0,0 +1,146 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2015, Luca CPZ
+
+--]]
+
+local helpers = require("lain.helpers")
+local json = require("lain.util").dkjson
+local focused = require("awful.screen").focused
+local naughty = require("naughty")
+local wibox = require("wibox")
+local math = math
+local os = os
+local string = string
+local type = type
+local tonumber = tonumber
+
+-- OpenWeatherMap
+-- current weather and X-days forecast
+-- lain.widget.weather
+
+local function factory(args)
+ args = args or {}
+
+ local weather = { widget = args.widget or wibox.widget.textbox() }
+ local APPID = args.APPID -- mandatory
+ local timeout = args.timeout or 60 * 15 -- 15 min
+ local current_call = args.current_call or "curl -s 'https://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s&APPID=%s'"
+ local forecast_call = args.forecast_call or "curl -s 'https://api.openweathermap.org/data/2.5/forecast?id=%s&units=%s&lang=%s&APPID=%s'"
+ local city_id = args.city_id or 0 -- placeholder
+ local units = args.units or "metric"
+ local lang = args.lang or "en"
+ local cnt = args.cnt or 5
+ local icons_path = args.icons_path or helpers.icons_dir .. "openweathermap/"
+ local notification_preset = args.notification_preset or {}
+ local notification_text_fun = args.notification_text_fun or
+ function (wn)
+ local day = os.date("%a %d", wn["dt"])
+ local temp = math.floor(wn["main"]["temp"])
+ local desc = wn["weather"][1]["description"]
+ return string.format("%s: %s, %d ", day, desc, temp)
+ end
+ local weather_na_markup = args.weather_na_markup or " N/A "
+ local followtag = args.followtag or false
+ local showpopup = args.showpopup or "on"
+ local settings = args.settings or function() end
+
+ weather.widget:set_markup(weather_na_markup)
+ weather.icon_path = icons_path .. "na.png"
+ weather.icon = wibox.widget.imagebox(weather.icon_path)
+
+ function weather.show(seconds)
+ weather.hide()
+
+ if followtag then
+ notification_preset.screen = focused()
+ end
+
+ if not weather.notification_text then
+ weather.update()
+ weather.forecast_update()
+ end
+
+ weather.notification = naughty.notify {
+ preset = notification_preset,
+ text = weather.notification_text,
+ icon = weather.icon_path,
+ timeout = type(seconds) == "number" and seconds or notification_preset.timeout
+ }
+ end
+
+ function weather.hide()
+ if weather.notification then
+ naughty.destroy(weather.notification)
+ weather.notification = nil
+ end
+ end
+
+ function weather.attach(obj)
+ obj:connect_signal("mouse::enter", function()
+ weather.show(0)
+ end)
+ obj:connect_signal("mouse::leave", function()
+ weather.hide()
+ end)
+ end
+
+ function weather.forecast_update()
+ local cmd = string.format(forecast_call, city_id, units, lang, APPID)
+ helpers.async(cmd, function(f)
+ local err
+ weather_now, _, err = json.decode(f, 1, nil)
+
+ if not err and type(weather_now) == "table" and tonumber(weather_now["cod"]) == 200 then
+ weather.notification_text = ""
+ for i = 1, weather_now["cnt"], weather_now["cnt"]//cnt do
+ weather.notification_text = weather.notification_text ..
+ notification_text_fun(weather_now["list"][i])
+ if i < weather_now["cnt"] then
+ weather.notification_text = weather.notification_text .. "\n"
+ end
+ end
+ end
+ end)
+ end
+
+ function weather.update()
+ local cmd = string.format(current_call, city_id, units, lang, APPID)
+ helpers.async(cmd, function(f)
+ local err
+ weather_now, _, err = json.decode(f, 1, nil)
+
+ if not err and type(weather_now) == "table" and tonumber(weather_now["cod"]) == 200 then
+ local sunrise = tonumber(weather_now["sys"]["sunrise"])
+ local sunset = tonumber(weather_now["sys"]["sunset"])
+ local icon = weather_now["weather"][1]["icon"]
+ local loc_now = os.time()
+
+ if sunrise <= loc_now and loc_now <= sunset then
+ icon = string.gsub(icon, "n", "d")
+ else
+ icon = string.gsub(icon, "d", "n")
+ end
+
+ weather.icon_path = icons_path .. icon .. ".png"
+ widget = weather.widget
+ settings()
+ else
+ weather.icon_path = icons_path .. "na.png"
+ weather.widget:set_markup(weather_na_markup)
+ end
+
+ weather.icon:set_image(weather.icon_path)
+ end)
+ end
+
+ if showpopup == "on" then weather.attach(weather.widget) end
+
+ weather.timer = helpers.newtimer("weather-" .. city_id, timeout, weather.update, false, true)
+ weather.timer_forecast = helpers.newtimer("weather_forecast-" .. city_id, timeout, weather.forecast_update, false, true)
+
+ return weather
+end
+
+return factory
diff --git a/awesome/lain/wiki/Home.md b/awesome/lain/wiki/Home.md
new file mode 100644
index 0000000..d098efe
--- /dev/null
+++ b/awesome/lain/wiki/Home.md
@@ -0,0 +1,43 @@
+Welcome to the Lain wiki!
+
+If you spot a typo or have a suggestion to improve these pages, please notify me opening an [issue](https://github.com/lcpz/lain/issues) format. Thank you.
+
+Dependencies
+------------
+
+Package | Requested by | Reasons of choice
+--- | --- | ---
+[curl](https://curl.haxx.se) | `imap`, `mpd`, and `weather` widgets | 1. faster and simpler to use than [LuaSocket](https://github.com/diegonehab/luasocket); 2. it's in the core of almost every distro; 3. can be called [asynchronously](https://awesomewm.org/doc/api/libraries/awful.spawn.html#easy_async)
+GLib >= 2.54 | `fs` widget | Pure Awesome/Lua implementation.
+
+The second dependency will be removed once all major distros update their Gio/Glib versions.
+
+Installation
+------------
+
+### Arch Linux
+
+[AUR package](https://aur.archlinux.org/packages/lain-git/)
+
+### Other distributions
+
+```shell
+git clone https://github.com/lcpz/lain.git ~/.config/awesome/lain
+```
+
+Also available via [LuaRocks](https://luarocks.org/modules/aajjbb/lain).
+
+Usage
+--------
+
+First, include it into your `rc.lua`:
+
+```lua
+local lain = require("lain")
+```
+
+Then check out the submodules you want:
+
+- [Layouts](https://github.com/lcpz/lain/wiki/Layouts)
+- [Widgets](https://github.com/lcpz/lain/wiki/Widgets)
+- [Utilities](https://github.com/lcpz/lain/wiki/Utilities)
diff --git a/awesome/lain/wiki/Layouts.md b/awesome/lain/wiki/Layouts.md
new file mode 100644
index 0000000..0286d4b
--- /dev/null
+++ b/awesome/lain/wiki/Layouts.md
@@ -0,0 +1,255 @@
+
+ lain/layout
+ .
+ |-- termfair
+ |-- termfair.center
+ |-- cascade
+ |-- cascade.tile
+ |-- centerwork
+ |-- centerwork.horizontal
+
+Usage
+=====
+
+As usual, specify your favourites in `awful.layout.layouts`, or set them on specific tags with [`awful.layout.set`](https://awesomewm.org/doc/api/libraries/awful.layout.html#set).
+
+```lua
+awful.layout.set(lain.layout.termfair, tag)
+```
+
+How do layouts work?
+====================
+
+`termfair`
+--------
+
+This layout restricts the size of each window. Each window will have the
+same width but is variable in height. Furthermore, windows are
+left-aligned. The basic workflow is as follows (the number above the
+screen is the number of open windows, the number in a cell is the fixed
+number of a client):
+
+ (1) (2) (3)
+ +---+---+---+ +---+---+---+ +---+---+---+
+ | | | | | | | | | | | |
+ | 1 | | | -> | 2 | 1 | | -> | 3 | 2 | 1 | ->
+ | | | | | | | | | | | |
+ +---+---+---+ +---+---+---+ +---+---+---+
+
+ (4) (5) (6)
+ +---+---+---+ +---+---+---+ +---+---+---+
+ | 4 | | | | 5 | 4 | | | 6 | 5 | 4 |
+ +---+---+---+ -> +---+---+---+ -> +---+---+---+
+ | 3 | 2 | 1 | | 3 | 2 | 1 | | 3 | 2 | 1 |
+ +---+---+---+ +---+---+---+ +---+---+---+
+
+The first client will be located in the left column. When opening
+another window, this new window will be placed in the left column while
+moving the first window into the middle column. Once a row is full,
+another row above it will be created.
+
+Default number of columns and rows are respectively taken from `nmaster`
+and `ncol` values in `awful.tag`, but you can set your own.
+
+For example, this sets `termfair` to 3 columns and at least 1 row:
+
+```lua
+lain.layout.termfair.nmaster = 3
+lain.layout.termfair.ncol = 1
+```
+
+`termfair.center`
+----------
+
+Similar to `termfair`, but with fixed number of vertical columns. Cols are centerded until there are `nmaster` columns, then windows are stacked as slaves, with possibly `ncol` clients per column at most.
+
+ (1) (2) (3)
+ +---+---+---+ +-+---+---+-+ +---+---+---+
+ | | | | | | | | | | | | |
+ | | 1 | | -> | | 1 | 2 | | -> | 1 | 2 | 3 | ->
+ | | | | | | | | | | | | |
+ +---+---+---+ +-+---+---+-+ +---+---+---+
+
+ (4) (5)
+ +---+---+---+ +---+---+---+
+ | | | 3 | | | 2 | 4 |
+ + 1 + 2 +---+ -> + 1 +---+---+
+ | | | 4 | | | 3 | 5 |
+ +---+---+---+ +---+---+---+
+
+Like `termfair`, default number of columns and rows are respectively taken from `nmaster`
+and `ncol` values in `awful.tag`, but you can set your own.
+
+For example, this sets `termfair.center` to 3 columns and at least 1 row:
+
+```lua
+lain.layout.termfair.center.nmaster = 3
+lain.layout.termfair.center.ncol = 1
+```
+
+`cascade`
+-------
+
+Cascade all windows of a tag.
+
+You can control the offsets by setting these two variables:
+
+```lua
+lain.layout.cascade.offset_x = 64
+lain.layout.cascade.offset_y = 16
+```
+
+The following reserves space for 5 windows:
+
+```lua
+lain.layout.cascade.nmaster = 5
+```
+
+That is, no window will get resized upon the creation of a new window,
+unless there's more than 5 windows.
+
+`cascade.tile`
+-----------
+
+Similar to `awful.layout.suit.tile` layout, however, clients in the slave
+column are cascaded instead of tiled.
+
+Left column size can be set, otherwise is controlled by `mwfact` of the
+tag. Additional windows will be opened in another column on the right.
+New windows are placed above old windows.
+
+Whether the slave column is placed on top of the master window or not is
+controlled by the value of `ncol`. A value of 1 means "overlapping slave column"
+and anything else means "don't overlap windows".
+
+Usage example:
+
+```lua
+lain.layout.cascade.tile.offset_x = 2
+lain.layout.cascade.tile.offset_y = 32
+lain.layout.cascade.tile.extra_padding = 5
+lain.layout.cascade.tile.nmaster = 5
+lain.layout.cascade.tile.ncol = 2
+```
+
+`extra_padding` reduces the size of the master window if "overlapping
+slave column" is activated. This allows you to see if there are any
+windows in your slave column.
+
+Setting `offset_x` to a very small value or even 0 is recommended to avoid wasting space.
+
+`centerwork`
+----------
+
+You start with one window, centered horizontally:
+
+ +--------------------------+
+ | +----------+ |
+ | | | |
+ | | | |
+ | | | |
+ | | MAIN | |
+ | | | |
+ | | | |
+ | | | |
+ | | | |
+ | +----------+ |
+ +--------------------------+
+
+This is your main working window. You do most of the work right here.
+Sometimes, you may want to open up additional windows. They're put on left and right, alternately.
+
+ +--------------------------+
+ | +---+ +----------+ +---+ |
+ | | | | | | | |
+ | | | | | | | |
+ | | | | | | | |
+ | +---+ | MAIN | +---+ |
+ | +---+ | | +---+ |
+ | | | | | | | |
+ | | | | | | | |
+ | | | | | | | |
+ | +---+ +----------+ +---+ |
+ +--------------------------+
+
+*Please note:* If you use Awesome's default configuration, navigation in
+this layout may be very confusing. How do you get from the main window
+to satellite ones depends on the order in which the windows are opened.
+Thus, use of `awful.client.focus.bydirection()` is suggested.
+Here's an example:
+
+```lua
+globalkeys = awful.util.table.join(
+ -- [...]
+ 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),
+ -- [...]
+)
+```
+
+`centerwork.horizontal`
+-----------
+
+Same as `centerwork`, except that the main
+window expands horizontally, and the additional windows
+are put ontop/below it. Useful if you have a screen turned 90°.
+
+Pre 4.0 `uselesstile` patches
+=============================
+
+In branch 3.5, this module provided useless gaps layouts. Since useless gaps have been implemented in Awesome 4.0, those layouts have been removed.
+
+Following are a couple of `uselesstile` variants that were not part of lain. They are kept only for reference and are not supported.
+
+Xmonad-like
+-----------
+
+If you want to have `awful.layout.suit.tile` behave like xmonad, with internal gaps two times wider than external ones, download [this](https://gist.github.com/lcpz/9e56dcfbe66bfe14967c) as `lain/layout/uselesstile`.
+
+Inverted master
+---------------
+
+Want to invert master window position? Use [this](https://gist.github.com/lcpz/c59dc59c9f99d98218eb) version. You can set `single_gap` with `width` and `height` in your `theme.lua`, in order to define the window geometry when there's only one client, otherwise it goes maximized. An example:
+
+ theme.single_gap = { width = 600, height = 100 }
+
+What about layout icons?
+========================
+
+They are located in ``lain/icons/layout``.
+
+To use them, define new `layout_*` variables in your ``theme.lua``. For instance:
+
+```lua
+theme.lain_icons = os.getenv("HOME") ..
+ "/.config/awesome/lain/icons/layout/default/"
+theme.layout_termfair = theme.lain_icons .. "termfair.png"
+theme.layout_centerfair = theme.lain_icons .. "centerfair.png" -- termfair.center
+theme.layout_cascade = theme.lain_icons .. "cascade.png"
+theme.layout_cascadetile = theme.lain_icons .. "cascadetile.png" -- cascade.tile
+theme.layout_centerwork = theme.lain_icons .. "centerwork.png"
+theme.layout_centerworkh = theme.lain_icons .. "centerworkh.png" -- centerwork.horizontal
+```
+
+Credit goes to [Nicolas Estibals](https://github.com/nestibal) for creating
+layout icons for default theme.
+
+You can use them as a template for your custom versions.
\ No newline at end of file
diff --git a/awesome/lain/wiki/Utilities.md b/awesome/lain/wiki/Utilities.md
new file mode 100644
index 0000000..4ec3057
--- /dev/null
+++ b/awesome/lain/wiki/Utilities.md
@@ -0,0 +1,338 @@
+Quake
+-----
+
+A Quake-like dropdown container for your favourite application.
+
+**Usage**
+
+Define it globally to have a single instance for all screens:
+
+```lua
+local quake = lain.util.quake()
+```
+
+or define it in `connect_for_each_screen` to have one instance for each screen:
+
+```lua
+awful.screen.connect_for_each_screen(function(s)
+ -- Quake application
+ s.quake = lain.util.quake()
+ -- [...]
+```
+
+**Keybinding example**
+
+If using a global instance:
+```lua
+awful.key({ modkey, }, "z", function () quake:toggle() end),
+```
+
+If using a per-screen instance:
+```lua
+awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end),
+```
+
+**Input table**
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`app` | client to spawn | string | "xterm"
+`name` | client name | string | "QuakeDD"
+`argname` | how to specify client name | string | "-name %s"
+`extra` | extra `app` arguments | string | empty string
+`border` | border width | integer | 1
+`visible` | initially visible | boolean | false
+`followtag` | always spawn on currently focused screen | boolean | false
+`overlap` | Overlap the wibox or not | boolean | false
+`settings` | Additional settings to make on the client | function | `nil`
+`screen` | screen where to spawn the client | integer | `awful.screen.focused()`
+`height` | dropdown client height | float in [0,1] or exact pixels number | 0.25
+`width` | dropdown client width | float in [0,1] or exact pixels number | 1
+`vert` | vertical position | string, possible values: "top", "bottom", "center" | "top"
+`horiz` | horizontal position | string, possible values: "left", "right", "center" | "left"
+
+`height` and `width` express a fraction of the workspace.
+
+`settings` is a function which takes the client as input, and can be used to customize its properties. For instance:
+
+```lua
+-- set the client sticky
+s.quake = lain.util.quake { settings = function(c) c.sticky = true end }
+```
+
+Read [here](https://awesomewm.org/doc/api/classes/client.html#Object_properties) for the complete list of properties.
+
+**Notes**
+
+* [Does not work](https://github.com/lcpz/lain/issues/358) with `gnome-terminal`, `konsole`, or any other terminal which is strictly designed for a Desktop Environment. Just pick a better terminal, [there's plenty](https://wiki.archlinux.org/index.php/List_of_applications#Terminal_emulators).
+* Set `followtag = true` if [experiencing issues with multiple screens](https://github.com/lcpz/lain/issues/346).
+* If you have a `awful.client.setslave` rule for your application, ensure you use an exception for `QuakeDD` (or your defined `name`). Otherwise, you may run into problems with focus.
+* If you are using a VTE-based terminal like `termite`, be sure to set [`argname = "--name %s"`](https://github.com/lcpz/lain/issues/211).
+
+Separators
+----------
+
+Adds Cairo separators.
+
+```lua
+local separators = lain.util.separators
+```
+
+A separator function `separators.separator` takes two color arguments, defined as strings. `"alpha"` argument is allowed. Example:
+
+```lua
+arrl_dl = separators.arrow_left(beautiful.bg_focus, "alpha")
+arrl_ld = separators.arrow_left("alpha", beautiful.bg_focus)
+```
+
+You can customize height and width by setting `separators_height` and `separators_width` in your `theme.lua`. Default values are 0 and 9, respectively.
+
+List of functions:
+
+ +-- separators
+ |
+ |`-- arrow_right() Draw a right arrow.
+ `-- arrow_left() Draw a left arrow.
+
+markup
+------
+
+Mades markup easier.
+
+```lua
+local markup = lain.util.markup
+```
+
+List of functions:
+
+ +-- markup
+ |
+ |`-- bold() Set bold.
+ |`-- italic() Set italicized text.
+ |`-- strike() Set strikethrough text.
+ |`-- underline() Set underlined text.
+ |`-- monospace() Set monospaced text.
+ |`-- big() Set bigger text.
+ |`-- small() Set smaller text.
+ |`-- font() Set the font of the text.
+ |`-- font() Set the font of the text.
+ |`-- color() Set background and foreground color.
+ |`-- fontfg() Set font and foreground color.
+ |`-- fontbg() Set font and background color.
+ `-- fontcolor() Set font, plus background and foreground colors.
+ |
+ |`--+ bg
+ | |
+ | `-- color() Set background color.
+ |
+ `--+ fg
+ |
+ `-- color() Set foreground color.
+
+they all take one argument, which is the text to markup, except the following:
+
+```lua
+markup.font(font, text)
+markup.color(fg, bg, text)
+markup.fontfg(font, fg, text)
+markup.fontbg(font, bg, text)
+markup.fontcolor(font, fg, bg, text)
+markup.fg.color(color, text)
+markup.bg.color(color, text)
+```
+
+Dynamic tagging
+---------------
+
+That is:
+
+- add a new tag;
+- rename current tag;
+- move current tag;
+- delete current tag.
+
+If you delete a tag, any rule set on it shall be broken, so be careful.
+
+Use it with key bindings like these:
+
+```lua
+awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag(mylayout) end),
+awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end),
+awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(1) end), -- move to next tag
+awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(-1) end), -- move to previous tag
+awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end),
+```
+
+The argument in `lain.util.add_tag` represents the tag layout, and is optional: if not present, it will be defaulted to `awful.layout.suit.tile`.
+
+Useless gaps resize
+---------------------
+
+Changes `beautiful.useless_gaps` on the fly.
+
+```lua
+lain.util.useless_gap_resize(thatmuch, s, t)
+```
+
+The argument `thatmuch` is the number of pixel to add to/substract from gaps (integer).
+
+The arguments `s` and `t` are the `awful.screen` and `awful.tag` in which you want to change the gap. They are optional.
+
+Following are example keybindings for changing client gaps on current screen and tag.
+
+Example 1:
+
+```lua
+-- 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),
+```
+
+where `altkey = Mod1`. Example 2:
+
+```lua
+mywidget:buttons(awful.util.table.join (
+ awful.button({}, 4, function() lain.util.useless_gaps_resize(-1) end),
+ awful.button({}, 5, function() lain.util.useless_gaps_resize(1) end)
+ end)
+))
+```
+
+so when hovering the mouse over `mywidget`, you can adjust useless gaps size by scrolling with the mouse wheel.
+
+tag\_view\_nonempty
+-------------------
+
+This function lets you jump to the next/previous non-empty tag.
+It takes two arguments:
+
+* `direction`: `1` for next non-empty tag, `-1` for previous.
+* `sc`: Screen which the taglist is in. Default is `mouse.screen` or `1`. This
+ argument is optional.
+
+You can use it with key bindings like these:
+
+```lua
+-- 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),
+```
+
+where `altkey = "Mod1"`.
+
+magnify\_client
+---------------
+
+Set a client to floating and resize it in the same way the "magnifier"
+layout does it. Place it on the "current" screen (derived from the mouse
+position). This allows you to magnify any client you wish, regardless of
+the currently used layout. Use it with a client keybinding like this:
+
+```lua
+clientkeys = awful.util.table.join(
+ -- [...]
+ awful.key({ modkey, "Control" }, "m", lain.util.magnify_client),
+ -- [...]
+)
+```
+
+If you want to "de-magnify" it, just retype the keybinding.
+
+If you want magnified client to respond to `incmwfact`, read [here](https://github.com/lcpz/lain/issues/195).
+
+menu\_clients\_current\_tags
+----------------------------
+
+Similar to `awful.menu.clients`, but this menu only shows the clients
+of currently visible tags. Use it with a key binding like this:
+
+```lua
+awful.key({ "Mod1" }, "Tab", function()
+ lain.util.menu_clients_current_tags({ width = 350 }, { keygrabber = true })
+end),
+```
+
+menu\_iterator
+--------------
+
+A generic menu utility which enables iteration over lists of possible
+actions to execute. The perfect example is a menu for choosing what
+configuration to apply to X with `xrandr`, as suggested on the [Awesome wiki page](https://awesomewm.org/recipes/xrandr).
+
+
+
+
An example Synergy menu, courtesy of sim590
+
+
+You can either manually create a menu by defining a table in this format:
+
+```lua
+{ { "choice description 1", callbackFuction1 }, { "choice description 2", callbackFunction2 }, ... }
+```
+
+or use `lain.util.menu_iterator.menu`. Once you have your menu, use it with `lain.menu_iterator.iterate`.
+
+### Input tables
+
+**lain.menu_iterator.iterate**
+
+| Argument | Description | Type
+|---|---| ---
+| `menu` | the menu to iterate on | table
+| `timeout` | time (in seconds) to wait on a choice before the choice is accepted | integer (default: 4)
+| `icon` | path to the icon to display in `naughty.notify` window | string
+
+**lain.menu_iterator.menu**
+
+| Argument | Description | Type
+|---|---| ---
+`choices` | list of choices (e.g., `{ "choice1", "choice2", ... }`) | array of strings
+`name` | name of the program related to this menu | string
+`selected_cb` | callback to execute for each selected choice, it takes one choice (string) as argument; can be `nil` (no action to execute) | function
+`rejected_cb` | callback to execute for all rejected choices (the remaining choices, once one is selected), it takes one choice (string) as argument; can be `nil` (no action to execute) | function
+`extra_choices` | more choices to be added to the menu; unlike `choices`, these ones won't trigger `rejected_cb` | array of `{ choice, callback }` pairs, where `choice` is a string and `callback` is a function
+`combination` | how choices have to be combined in the menu; possible values are: "single" (default), the set of possible choices will simply be the input set ; "powerset", the set of possible choices will be the [power set](https://en.wikipedia.org/wiki/Power_set) of the input set | string
+
+### Examples
+
+A simple example is:
+
+```lua
+local mymenu_iterable = lain.util.menu_iterator.menu {
+ choices = {"My first choice", "My second choice"},
+ name = "My awesome program",
+ selected_cb = function(choice)
+ -- do something with selected choice
+ end,
+ rejected_cb = function(choice)
+ -- do something with every rejected choice
+ end
+}
+```
+
+The variable `mymenu_iterable` is a menu compatible with the function `lain.util.menu_iterator.iterate`, which will iterate over it and displays notification with `naughty.notify` every time it is called. You can use it like this:
+
+```lua
+local confirm_timeout = 5 -- time to wait before confirming the menu selection
+local my_notify_icon = "/path/to/icon" -- the icon to display in the notification
+lain.util.menu_iterator.iterate(mymenu_iterable, confirm_timeout, my_notify_icon)
+```
+
+Once `confirm_timeout` has passed without anymore calls to `iterate`, the choice is made and the associated callbacks (both for selected and rejected choices) are spawned.
+
+A useful practice is to add a `Cancel` option as an extra choice for canceling a menu selection. Extending the above example:
+
+```lua
+local mymenu_iterable = lain.util.menu_iterator.menu {
+ choices = {"My first choice", "My second choice"},
+ name = "My awesome program",
+ selected_cb = function(choice)
+ -- do something with selected choice
+ end,
+ rejected_cb = function(choice)
+ -- do something with every rejected choice
+ end
+ -- nil means no action to do
+ extra_choices = { {"Cancel"}, nil }
+}
+```
diff --git a/awesome/lain/wiki/Widgets.md b/awesome/lain/wiki/Widgets.md
new file mode 100644
index 0000000..1653ea2
--- /dev/null
+++ b/awesome/lain/wiki/Widgets.md
@@ -0,0 +1,55 @@
+# Usage
+
+Every lain widget is a table.
+
+A lain widget is generated by a `function`.
+
+The `function` signature, input and output arguments can be found in the [related wiki entry](https://github.com/lcpz/lain/wiki/Widgets#index).
+
+Every lain widget contains a `wibox.widget`, which is updated by a timed function. To access the widget, use the field `widget`, to access the timed function, use the field `update`. Some lain widgets may also have an `icon` field, which is a `wibox.widget.imagebox`, and/or a `timer` field, which is the `gears.timer` on `update`.
+
+Every `function` may take either a table or a list of variables as input.
+
+If the input is a table, you must define a function variable called `settings` in it. There you will be able to define `widget` appearance.
+
+For instance, if `widget` is a textbox, to markup it call `widget:set_markup(...)` within `settings`.
+
+In the scope of `settings` you can use predefined arguments, which are specified in the wiki entries.
+
+Example of a lain widget:
+
+```lua
+local cpu = lain.widget.cpu {
+ settings = function()
+ widget:set_markup("Cpu " .. cpu_now.usage)
+ end
+}
+-- to access the widget: cpu.widget
+```
+
+Given the asynchronous nature of these widgets, be sure to use a [defensive programming](https://github.com/lcpz/lain/issues/451#issuecomment-615450523) style when you write your configuration. You can find various examples of this in [awesome-copycats](https://github.com/lcpz/awesome-copycats).
+
+# Index
+
+- [alsa](https://github.com/lcpz/lain/wiki/alsa)
+- [alsabar](https://github.com/lcpz/lain/wiki/alsabar)
+- [bat](https://github.com/lcpz/lain/wiki/bat)
+- [cal](https://github.com/lcpz/lain/wiki/cal)
+- [cpu](https://github.com/lcpz/lain/wiki/cpu)
+- [fs](https://github.com/lcpz/lain/wiki/fs)
+- [imap](https://github.com/lcpz/lain/wiki/imap)
+- [mem](https://github.com/lcpz/lain/wiki/mem)
+- [mpd](https://github.com/lcpz/lain/wiki/mpd)
+- [net](https://github.com/lcpz/lain/wiki/net)
+- [pulse](https://github.com/lcpz/lain/wiki/pulse)
+- [pulsebar](https://github.com/lcpz/lain/wiki/pulsebar)
+- [sysload](https://github.com/lcpz/lain/wiki/sysload)
+- [temp](https://github.com/lcpz/lain/wiki/temp)
+- [weather](https://github.com/lcpz/lain/wiki/weather)
+
+## User contributions
+
+- [moc](https://github.com/lcpz/lain/wiki/moc)
+- [redshift](https://github.com/lcpz/lain/wiki/redshift)
+- [task](https://github.com/lcpz/lain/wiki/task)
+- [tp_smapi](https://github.com/lcpz/lain/wiki/tp_smapi)
diff --git a/awesome/lain/wiki/_Footer.md b/awesome/lain/wiki/_Footer.md
new file mode 100644
index 0000000..b64f13b
--- /dev/null
+++ b/awesome/lain/wiki/_Footer.md
@@ -0,0 +1 @@
+[Home](https://github.com/lcpz/lain/wiki) • [Layouts](https://github.com/lcpz/lain/wiki/Layouts) • [Widgets](https://github.com/lcpz/lain/wiki/Widgets) • [Utilities](https://github.com/lcpz/lain/wiki/Utilities)
diff --git a/awesome/lain/wiki/_Sidebar.md b/awesome/lain/wiki/_Sidebar.md
new file mode 100644
index 0000000..0289783
--- /dev/null
+++ b/awesome/lain/wiki/_Sidebar.md
@@ -0,0 +1,26 @@
+* [Home](https://github.com/lcpz/lain/wiki/Home)
+* [Layouts](https://github.com/lcpz/lain/wiki/Layouts)
+ * [Usage](https://github.com/lcpz/lain/wiki/Layouts#Usage)
+ * [How do layouts work?](https://github.com/lcpz/lain/wiki/Layouts#how-do-layouts-work)
+ * [termfair](https://github.com/lcpz/lain/wiki/Layouts#termfair)
+ * [centerfair](https://github.com/lcpz/lain/wiki/Layouts#termfaircenter)
+ * [cascade](https://github.com/lcpz/lain/wiki/Layouts#cascade)
+ * [cascadetile](https://github.com/lcpz/lain/wiki/Layouts#cascadetile)
+ * [centerwork](https://github.com/lcpz/lain/wiki/Layouts#centerwork)
+ * [centerworkh](https://github.com/lcpz/lain/wiki/Layouts#centerworkhorizontal)
+ * [Pre 4.0 uselesstile patches](https://github.com/lcpz/lain/wiki/Layouts#pre-40-uselesstile-patches)
+ * [What about layout icons?](https://github.com/lcpz/lain/wiki/Layouts#what-about-layout-icons)
+* [Widgets](https://github.com/lcpz/lain/wiki/Widgets)
+ * [Usage](https://github.com/lcpz/lain/wiki/Widgets#usage)
+ * [Index](https://github.com/lcpz/lain/wiki/Widgets#index)
+ * [Users contributed](https://github.com/lcpz/lain/wiki/Widgets#users-contributed)
+* [Utilities](https://github.com/lcpz/lain/wiki/Utilities)
+ * [quake](https://github.com/lcpz/lain/wiki/Utilities#quake)
+ * [separators](https://github.com/lcpz/lain/wiki/Utilities#separators)
+ * [markup](https://github.com/lcpz/lain/wiki/Utilities#markup)
+ * [dynamic tagging](https://github.com/lcpz/lain/wiki/Utilities#dynamic-tagging)
+ * [useless_gaps_resize](https://github.com/lcpz/lain/wiki/Utilities#useless-gaps-resize)
+ * [tag_view_non_empty](https://github.com/lcpz/lain/wiki/Utilities#tag_view_nonempty)
+ * [magnify_client](https://github.com/lcpz/lain/wiki/Utilities#magnify_client)
+ * [menu_clients_current_tags](https://github.com/lcpz/lain/wiki/Utilities#menu_clients_current_tags)
+ * [menu_iterator](https://github.com/lcpz/lain/wiki/Utilities#menu_iterator)
diff --git a/awesome/lain/wiki/alsa.md b/awesome/lain/wiki/alsa.md
new file mode 100644
index 0000000..1418379
--- /dev/null
+++ b/awesome/lain/wiki/alsa.md
@@ -0,0 +1,149 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows ALSA volume.
+
+```lua
+local volume = lain.widget.alsa()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 5
+`cmd` | Alsa mixer command | string | "amixer"
+`channel` | Mixer channel | string | "Master"
+`togglechannel` | Toggle channel | string | `nil`
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`cmd` is useful if you need to pass additional arguments to amixer. For instance, you may want to define `cmd = "amixer -c X"` in order to set amixer with card `X`.
+
+`settings` can use the following variables:
+
+Variable | Meaning | Type | Values
+--- | --- | --- | ---
+`volume_now.level` | Volume level | integer | 0-100
+`volume_now.status` | Device status | string | "on", "off"
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`channel` | ALSA channel | string
+`update` | Update `widget` | function
+
+## Toggle channel
+
+In case mute toggling can't be mapped to master channel (this happens, for instance, when you are using an HDMI output), define togglechannel as your S/PDIF device. You can get the device ID with `scontents` command.
+
+For instance, if card number is 1 and S/PDIF number is 3:
+
+```shell
+$ amixer -c 1 scontents
+Simple mixer control 'Master',0
+ Capabilities: volume
+ Playback channels: Front Left - Front Right
+ Capture channels: Front Left - Front Right
+ Limits: 0 - 255
+ Front Left: 255 [100%]
+ Front Right: 255 [100%]
+Simple mixer control 'IEC958',0
+ Capabilities: pswitch pswitch-joined
+ Playback channels: Mono
+ Mono: Playback [on]
+Simple mixer control 'IEC958',1
+ Capabilities: pswitch pswitch-joined
+ Playback channels: Mono
+ Mono: Playback [on]
+Simple mixer control 'IEC958',2
+ Capabilities: pswitch pswitch-joined
+ Playback channels: Mono
+ Mono: Playback [on]
+Simple mixer control 'IEC958',3
+ Capabilities: pswitch pswitch-joined
+ Playback channels: Mono
+ Mono: Playback [on]
+```
+
+you have to set `togglechannel = "IEC958,3"`.
+
+## Buttons
+
+If you want buttons, just add the following after your widget in `rc.lua`.
+
+```lua
+volume.widget:buttons(awful.util.table.join(
+ awful.button({}, 1, function() -- left click
+ awful.spawn(string.format("%s -e alsamixer", terminal))
+ end),
+ awful.button({}, 2, function() -- middle click
+ os.execute(string.format("%s set %s 100%%", volume.cmd, volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 3, function() -- right click
+ os.execute(string.format("%s set %s toggle", volume.cmd, volume.togglechannel or volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 4, function() -- scroll up
+ os.execute(string.format("%s set %s 1%%+", volume.cmd, volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 5, function() -- scroll down
+ os.execute(string.format("%s set %s 1%%-", volume.cmd, volume.channel))
+ volume.update()
+ end)
+))
+```
+
+## Keybindings
+
+You can control the widget with keybindings like these:
+
+```lua
+-- ALSA volume control
+awful.key({ altkey }, "Up",
+ function ()
+ os.execute(string.format("amixer set %s 1%%+", volume.channel))
+ volume.update()
+ end),
+awful.key({ altkey }, "Down",
+ function ()
+ os.execute(string.format("amixer set %s 1%%-", volume.channel))
+ volume.update()
+ end),
+awful.key({ altkey }, "m",
+ function ()
+ os.execute(string.format("amixer set %s toggle", volume.togglechannel or volume.channel))
+ volume.update()
+ end),
+awful.key({ altkey, "Control" }, "m",
+ function ()
+ os.execute(string.format("amixer set %s 100%%", volume.channel))
+ volume.update()
+ end),
+awful.key({ altkey, "Control" }, "0",
+ function ()
+ os.execute(string.format("amixer set %s 0%%", volume.channel))
+ volume.update()
+ end),
+```
+
+where `altkey = "Mod1"`.
+
+### Muting with PulseAudio
+
+If you are using this widget in conjuction with PulseAudio, add the option `-D pulse` to the muting keybinding, like this:
+
+```lua
+awful.key({ altkey }, "m",
+ function ()
+ os.execute(string.format("amixer -D pulse set %s toggle", volume.togglechannel or volume.channel))
+ volume.update()
+ end),
+```
diff --git a/awesome/lain/wiki/alsabar.md b/awesome/lain/wiki/alsabar.md
new file mode 100644
index 0000000..a986d8f
--- /dev/null
+++ b/awesome/lain/wiki/alsabar.md
@@ -0,0 +1,108 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows ALSA volume with a progressbar; provides tooltips and notifications.
+
+```lua
+local volume = lain.widget.alsabar()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 5
+`settings` | User settings | function | empty function
+`width` | Bar width | number | 63
+`height` | Bar height | number | 1
+`margins` | Bar margins | number | 1
+`paddings` | Bar paddings | number | 1
+`ticks` | Set bar ticks on | boolean | false
+`ticks_size` | Ticks size | integer | 7
+`tick` | String for a notification tick | string | "|"
+`tick_pre` | String for the left notification delimeter | string | "["
+`tick_post` | String for the right notification delimeter | string | "]"
+`tick_none` | String for an empty notification tick | string | " "
+`cmd` | ALSA mixer command | string | "amixer"
+`channel` | Mixer channel | string | "Master"
+`togglechannel` | Toggle channel | string | `nil`
+`tick` | The character usef for ticks in the notification | string | "|"
+`colors` | Bar colors | table | see [Default colors](https://github.com/lcpz/lain/wiki/alsabar#default-colors)
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/alsabar#default-notification_preset)
+`followtag` | Display the notification on currently focused screen | boolean | false
+
+`cmd` is useful if you need to pass additional arguments to `amixer`. For instance, you may want to define `cmd = "amixer -c X"` in order to set amixer with card `X`.
+
+In case mute toggling can't be mapped to master channel (this happens, for instance, when you are using an HDMI output), define `togglechannel` as your S/PDIF device. Read [`alsa`](https://github.com/lcpz/lain/wiki/alsa#toggle-channel) page to know how.
+
+To set the maximum number of ticks to display in the notification, define `max_ticks` (integer) in `notification_preset`.
+
+`settings` can use the following variables:
+
+Variable | Meaning | Type | Values
+--- | --- | --- | ---
+`volume_now.level` | Volume level | integer | 0-100
+`volume_now.status` | Device status | string | "on", "off"
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+### Default colors
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`background` | Bar backgrund color | string | "#000000"
+`mute` | Bar mute color | string | "#EB8F8F"
+`unmute` | Bar unmute color | string | "#A4CE8A"
+
+### Default `notification_preset`
+
+```lua
+notification_preset = {
+ font = "Monospace 10"
+}
+```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`bar` | The widget | `wibox.widget.progressbar`
+`channel` | ALSA channel | string
+`notify` | The notification | function
+`update` | Update `bar` | function
+`tooltip` | The tooltip | `awful.tooltip`
+
+## Buttons
+
+If you want buttons, just add the following after your widget in `rc.lua`.
+
+```lua
+volume.bar:buttons(awful.util.table.join(
+ awful.button({}, 1, function() -- left click
+ awful.spawn(string.format("%s -e alsamixer", terminal))
+ end),
+ awful.button({}, 2, function() -- middle click
+ os.execute(string.format("%s set %s 100%%", volume.cmd, volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 3, function() -- right click
+ os.execute(string.format("%s set %s toggle", volume.cmd, volume.togglechannel or volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 4, function() -- scroll up
+ os.execute(string.format("%s set %s 1%%+", volume.cmd, volume.channel))
+ volume.update()
+ end),
+ awful.button({}, 5, function() -- scroll down
+ os.execute(string.format("%s set %s 1%%-", volume.cmd, volume.channel))
+ volume.update()
+ end)
+))
+```
+
+## Keybindings
+
+Read [here](https://github.com/lcpz/lain/wiki/alsa#keybindings). If you want notifications, use `volume.notify()` instead of `volume.update()`.
diff --git a/awesome/lain/wiki/bat.md b/awesome/lain/wiki/bat.md
new file mode 100644
index 0000000..4af8cdc
--- /dev/null
+++ b/awesome/lain/wiki/bat.md
@@ -0,0 +1,103 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows the remaining time and percentage capacity of your laptop battery, as well
+as the current wattage. Multiple batteries are supported.
+
+Displays a notification when battery is fully charged, low, or critical.
+
+```lua
+local mybattery = lain.widget.bat()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 30
+`pspath` | Power supply directory path | string | "/sys/class/power_supply/"
+`battery` | Single battery id | string | autodetected
+`batteries` | Multiple batteries id table | table of strings | autodetected
+`ac` | AC | string | autodetected
+`notify` | Show notification popups | string | "on"
+`full_notify` | Show a notification popup when the battery's fully charged | string | inherited value from `notify`
+`n_perc` | Percentages assumed for critical and low battery levels | table of integers | `{5, 15}`
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+The widget will try to autodetect `battery`, `batteries` and `ac`. If something
+goes wrong, you will have to define them manually. In that case, you only have
+to define one between `battery` and `batteries`. If you have one battery, you
+can either use `args.battery = "BAT*"` or `args.batteries = {"BAT*"}`, where `BAT*`
+is the identifier of your battery in `pspath` (do not use it as a wildcard).
+Of course, if you have multiple batteries, you need to use the latter option.
+
+To disable notifications, set `notify` to `"off"`.
+
+If you define `pspath`, **be sure** to not forget the final slash (/).
+
+`settings` can use the `bat_now` table, which contains the following strings:
+
+- `status`, general status ("N/A", "Discharging", "Charging", "Full");
+- `n_status[i]`, i-th battery status (like above);
+- `ac_status`, AC-plug flag (0 if cable is unplugged, 1 if plugged, "N/A" otherwise);
+- `perc`, total charge percentage (integer between 0 and 100 or "N/A");
+- `n_perc[i]`, i-th battery charge percentage (like above);
+- `time`, time remaining until charge if charging, until discharge if discharging (HH:MM string or "N/A");
+- `watt`, battery watts (float with 2 decimals);
+- `capacity`, remaining battery capacity in percent;
+- `n_capacity[i]`, i-th battery remaining capacity (like above).
+
+and can modify the following three tables, which will be the preset for the naughty notifications:
+* `bat_notification_charged_preset` (used if battery is fully charged and connected to AC)
+* `bat_notification_low_preset` (used if battery charge level <= 15)
+* `bat_notification_critical_preset` (used if battery charge level <= 5)
+
+Check [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for
+the list of variables they can contain. Default definitions:
+
+```lua
+bat_notification_charged_preset = {
+ title = "Battery full",
+ text = "You can unplug the cable",
+ timeout = 15,
+ fg = "#202020",
+ bg = "#CDCDCD"
+ }
+
+```
+
+```lua
+bat_notification_low_preset = {
+ title = "Battery low",
+ text = "Plug the cable!",
+ timeout = 15,
+ fg = "#202020",
+ bg = "#CDCDCD"
+}
+```
+```lua
+bat_notification_critical_preset = {
+ title = "Battery exhausted",
+ text = "Shutdown imminent",
+ timeout = 15,
+ fg = "#000000",
+ bg = "#FFFFFF"
+}
+```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+## Note
+
+Alternatively, you can try the [`upower` recipe](https://awesomewm.org/recipes/watch).
diff --git a/awesome/lain/wiki/cal.md b/awesome/lain/wiki/cal.md
new file mode 100644
index 0000000..5b6e358
--- /dev/null
+++ b/awesome/lain/wiki/cal.md
@@ -0,0 +1,83 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Creates a calendar notification that can be attached to widgets.
+
+This is a simpler but [faster](https://github.com/awesomeWM/awesome/issues/1861)
+alternative to [`awful.widget.calendar_popup`](https://awesomewm.org/doc/api/classes/awful.widget.calendar_popup.html), which emulates UNIX's `cal`.
+
+```lua
+local mycal = lain.widget.cal()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`attach_to` | List of widgets | table | empty table
+`week_start` | First day of the week | integer | 2 (Monday)
+`three` | Display three months spanning the date | boolean | false
+`followtag` | Display the notification on currently focused screen | boolean | false
+`week_number` | Display the week number | string ("none", "left" or "right") | "none"
+`week_number_format` | Week number format | string | `"%3d \| "` for "left", `"\| %-3d"` for "right"
+`icons` | Path to calendar icons | string | [icons/cal/white/](https://github.com/lcpz/lain/tree/master/icons/cal/white)
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/cal#default-notification_preset)
+
+Set `attach_to` as the list of widgets to which you want to attach the calendar, like this:
+
+```lua
+local mycal = lain.widget.cal {
+ attach_to = { mywidget1, mywidget2, ... },
+ -- [...]
+}
+```
+
+For every widget in `attach_to`:
+
+- Left click / scroll down: switch to previous month.
+- Middle click show current month.
+- Right click / scroll up: switch to next month.
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+### Default `notification_preset`
+
+```lua
+notification_preset = {
+ font = "Monospace 10",
+ fg = "#FFFFFF",
+ bg = "#000000"
+}
+```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`attach` | Attach the calendar to an input widget | function
+`show` | Show calendar | function
+`hide` | Hide calendar | function
+
+`attach` takes as argument any widget you want to attach the calendar to, while
+`show` takes as optional argument an integer to indicate the seconds to timeout.
+
+## Keybinding
+
+```lua
+awful.key({ altkey }, "c", function () mycal.show(7) end)
+```
+
+Where `altkey = "Mod1"`.
+
+## Notes
+
+* Naughty notifications require `notification_preset.font` to be **monospaced**, in order to correctly display the output.
+* If you want to [disable notification icon](https://github.com/lcpz/lain/pull/351), set `icons = ""` in the input table.
+* If you want to localise the calendar, put `os.setlocale(os.getenv("LANG"))` in your `rc.lua`.
+* If you want to get notifications [only with mouse clicks](https://github.com/lcpz/lain/issues/320) on a given widget, use this code:
+ ```lua
+ yourwidget:disconnect_signal("mouse::enter", mycal.hover_on)
+ ```
diff --git a/awesome/lain/wiki/cpu.md b/awesome/lain/wiki/cpu.md
new file mode 100644
index 0000000..d3dd6e5
--- /dev/null
+++ b/awesome/lain/wiki/cpu.md
@@ -0,0 +1,31 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows the current CPU usage, both in general and per core.
+
+```lua
+local mycpu = lain.widget.cpu()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 2
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`settings` can use these strings:
+
+* `cpu_now.usage`, the general use percentage;
+* `cpu_now[i].usage`, the i-th core use percentage, with `i` starting from 1.
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
\ No newline at end of file
diff --git a/awesome/lain/wiki/fs.md b/awesome/lain/wiki/fs.md
new file mode 100644
index 0000000..a8b82aa
--- /dev/null
+++ b/awesome/lain/wiki/fs.md
@@ -0,0 +1,83 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows file systems informations.
+
+If a partition is given in input, a notification will be displayed when it is almost full.
+
+```lua
+local mypartition = lain.widget.fs()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 600
+`partition` | (Optional) Partition to watch: a notification will be displayed when full | string | `nil`
+`threshold` | Percentage threshold at which the notification is triggered | integer | 99
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/fs#default-notification_preset)
+`followtag` | Display the notification on currently focused screen | boolean | false
+`showpopup` | Display popups with mouse hovering | string, possible values: "on", "off" | "on"
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`settings` can use the table `fs_now`, which contains a string entry for each file system path available. For instance, root infos are located in the variable `fs_now["/"]`. Every entry in this table have the following variables:
+
+Variable | Meaning | Type
+--- | --- | ---
+`units` | (multiple of) units used | string ("Kb", "Mb", "Gb", and so on)
+`percentage` | the used percentage | integer
+`size` | size in `units` of the given fs | float
+`used` | amount of space used in the given fs, expressed in `units` | float
+`free` | amount of free space in the given fs, expressed in `units` | float
+
+Usage example:
+
+```lua
+-- shows used (percentage) and remaining space in home partition
+local fsroothome = lain.widget.fs({
+ settings = function()
+ widget:set_text("/home: " .. fs_now["/home"].percentage .. "% (" ..
+ fs_now["/home"].free .. " " .. fs_now["/home"].units .. " left)")
+ end
+})
+-- output example: "/home: 37% (239.4 Gb left)"
+```
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+### Default `notification_preset`
+
+```lua
+notification_preset = {
+ font = "Monospace 10",
+ fg = "#FFFFFF",
+ bg = "#000000"
+}
+```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`show` | The notification | function
+
+You can display the notification with a key binding like this:
+
+```lua
+awful.key({ altkey }, "h", function () mypartition.show(seconds, scr) end),
+```
+
+where ``altkey = "Mod1"`` and ``show`` arguments, both optionals, are:
+
+* `seconds`, notification time in seconds
+* `scr`, screen which to display the notification in
+
+## Note
+
+Naughty notifications require `notification_preset.font` to be **monospaced**, in order to correctly display the output.
diff --git a/awesome/lain/wiki/imap.md b/awesome/lain/wiki/imap.md
new file mode 100644
index 0000000..5a17270
--- /dev/null
+++ b/awesome/lain/wiki/imap.md
@@ -0,0 +1,116 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows mails count fetching over IMAP.
+
+```lua
+local myimap = lain.widget.imap(args)
+```
+
+New mails are notified like this:
+
+ +--------------------------------------------+
+ | +---+ |
+ | |\ /| donald@disney.org has 3 new messages |
+ | +---+ |
+ +--------------------------------------------+
+
+## Input table
+
+Required parameters are:
+
+Variable | Meaning | Type
+--- | --- | ---
+`server` | Mail server | string
+`mail` | User mail | string
+`password` | User password | string
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+while the optional are:
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`port` | IMAP port | integer | 993
+`timeout` | Refresh timeout (in seconds) | integer | 60
+`pwdtimeout` | Timeout for password retrieval function (see [here](https://github.com/lcpz/lain/wiki/imap#password-security)) | integer | 10
+`is_plain` | Define whether `password` is a plain password (true) or a command that retrieves it (false) | boolean | false
+`followtag` | Notification behaviour | boolean | false
+`notify` | Show notification popups | string | "on"
+`settings` | User settings | function | empty function
+
+`settings` can use `imap_now` table, which contains the following non negative integers:
+
+- `["MESSAGES"]`
+- `["RECENT"]`
+- `["UNSEEN"]`
+
+example of fetch: `total = imap_now["MESSAGES"]`. For backwards compatibility, `settings` can also use `mailcount`, a pointer to `imap_now["UNSEEN"]`.
+
+Also, `settings` can modify `mail_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/apidoc/libraries/naughty.html#notify) for the list of variables it can contain. Default definition:
+
+```lua
+mail_notification _preset = {
+ icon = "lain/icons/mail.png",
+ position = "top_left"
+}
+```
+
+Note that `mailcount` and `imap_now` elements are equals to 0 either if there are no new mails or credentials are invalid, so make sure that your settings are correct.
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+You can have multiple instances of this widget at the same time.
+
+## Password security
+
+The reason why `is_plain` is false by default is to discourage the habit of storing passwords in plain.
+
+In general, when `is_plain == false`, `password` can be either a string, a table or a function: the widget will execute it asynchronously in the first two cases.
+
+### Using plain passwords
+
+You can set your password in plain like this:
+
+```lua
+myimapcheck = lain.widget.imap {
+ is_plain = true,
+ password = "mymailpassword",
+ -- [...]
+}
+```
+
+and you will have the same security provided by `~/.netrc`.
+
+### Using a password manager
+
+I recommend to use [spm](https://notabug.org/kl3/spm) or [pass](https://www.passwordstore.org). In this case, `password` has to be a function. Example stub:
+
+```lua
+myimapcheck = lain.widget.imap {
+ password = function()
+ -- do your retrieval
+ return retrieved_password, try_again
+ end,
+ -- [...]
+}
+```
+
+Where `retrieved_password` is the password retrieved from the manager, and `try_again` supports [DBus Secret Service](https://specifications.freedesktop.org/secret-service).
+
+The process flow is that the first `password()` call spawns the unlock prompt, then the second call retrieves the password. [Here](https://gist.github.com/lcpz/1854fc4320f4701957cd5309c8eed4a6) is an example of `password` function.
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+`pwdtimer` | Password retrieval timer (available only if `password` is a function)| [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+You can use `timer` to start/stop the widget as you like.
diff --git a/awesome/lain/wiki/mem.md b/awesome/lain/wiki/mem.md
new file mode 100644
index 0000000..470908b
--- /dev/null
+++ b/awesome/lain/wiki/mem.md
@@ -0,0 +1,36 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows memory status in MiB, [like `top` and `free -h`](https://github.com/lcpz/lain/issues/271).
+
+```lua
+local mymem = lain.widget.mem()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 2
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+in `settings` you can use the following variables:
+
+Variable | Meaning | Type
+--- | --- | ---
+`mem_now.used` | Memory used (MiB) | string
+`mem_now.swapused` | Swap memory used (MiB) | string
+`mem_now.perc` | Memory percentage | int
+
+(See line 23-39 of [this file](https://github.com/lcpz/lain/blob/master/widget/mem.lua) for more potential variables.)
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
\ No newline at end of file
diff --git a/awesome/lain/wiki/moc.md b/awesome/lain/wiki/moc.md
new file mode 100644
index 0000000..6f68d4e
--- /dev/null
+++ b/awesome/lain/wiki/moc.md
@@ -0,0 +1,123 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+A widget for showing the current song track's information from MOC (Music On Console).
+
+```lua
+local mymoc = lain.widget.contrib.moc()
+```
+
+Now playing songs are notified like this:
+
+ +--------------------------------------------------------+
+ | +-------+ |
+ | |/^\_/^\| Now playing |
+ | |\ O O /| Cannibal Corpse (Hammer Smashed Face) - 1993 |
+ | | '.o.' | Hammer Smashed Face (Radio Disney Version) |
+ | +-------+ |
+ +--------------------------------------------------------+
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 1
+`music_dir` | Music directory | string | "~/Music"
+`cover_size` | Album art notification size (both height and width) | integer | 100
+`cover_pattern` | Pattern for the album art file | string | `*\\.(jpg|jpeg|png|gif)`*
+`default_art` | Default art | string | ""
+`followtag` | Display the notification on currently focused screen | boolean | false
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+\* In Lua, "\\\\" means "\" escaped.
+
+Default `cover_pattern` definition will made the widget set the first jpg, jpeg, png or gif file found in the directory as the album art.
+
+Pay attention to case sensitivity when defining `music_dir`.
+
+`settings` can use `moc_now` table, which contains the following string values:
+
+- state (possible values: "PLAY", "PAUSE", "STOP")
+- file
+- artist
+- title
+- album
+- elapsed (Time elapsed for the current track)
+- total (The current track's total time)
+
+and can modify `moc_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/apidoc/libraries/naughty.html#notify) for the list of variables it can contain. Default definition:
+
+```lua
+moc_notification_preset = {
+ title = "Now playing",
+ timeout = 6,
+ text = string.format("%s (%s) - %s\n%s", moc_now.artist,
+ moc_now.album, moc_now.elapsed, moc_now.title)
+}
+```
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+You can use `timer` to start/stop the widget as you like.
+
+## Keybindings
+
+You can control the widget with key bindings like these:
+
+```lua
+-- MOC control
+awful.key({ altkey, "Control" }, "Up",
+ function ()
+ os.execute("mocp -G") -- toggle
+ moc.update()
+ end),
+awful.key({ altkey, "Control" }, "Down",
+ function ()
+ os.execute("mocp -s") -- stop
+ moc.update()
+ end),
+awful.key({ altkey, "Control" }, "Left",
+ function ()
+ os.execute("mocp -r") -- previous
+ moc.update()
+ end),
+awful.key({ altkey, "Control" }, "Right",
+ function ()
+ os.execute("mocp -f") -- next
+ moc.update()
+ end),
+```
+
+where `altkey = "Mod1"`.
+
+If you don't use the widget for long periods and wish to spare CPU, you can toggle it with a keybinding like this:
+
+```lua
+-- toggle MOC widget
+awful.key({ altkey }, "0",
+ function ()
+ local common = { text = "MOC widget ", position = "top_middle", timeout = 2 }
+ if moc.timer.started then
+ moc.timer:stop()
+ common.text = common.text .. markup.bold("OFF")
+ else
+ moc.timer:start()
+ common.text = common.text .. markup.bold("ON")
+ end
+ naughty.notify(common)
+ end),
+```
diff --git a/awesome/lain/wiki/mpd.md b/awesome/lain/wiki/mpd.md
new file mode 100644
index 0000000..9f614c0
--- /dev/null
+++ b/awesome/lain/wiki/mpd.md
@@ -0,0 +1,182 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows MPD status.
+
+```lua
+local mympd = lain.widget.mpd()
+```
+
+Now playing songs are notified like this:
+
+ +--------------------------------------------------------+
+ | +-------+ |
+ | |/^\_/^\| Now playing |
+ | |\ O O /| Cannibal Corpse (Hammer Smashed Face) - 1993 |
+ | | '.o.' | Hammer Smashed Face (Radio Disney Version) |
+ | +-------+ |
+ +--------------------------------------------------------+
+
+**Note:** if MPD is turned off or not set correctly, the widget will constantly display "N/A" values.
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 2
+`password` | MPD password | string | ""
+`host` | MPD server | string | "127.0.0.1"
+`port` | MPD port | string | "6600"
+`music_dir` | Music directory | string | "~/Music"
+`cover_size` | Album art notification size (both height and width) | integer | 100
+`cover_pattern` | Pattern for the album art file | string | `*.(jpg\|jpeg\|png\|gif)$`
+`default_art` | Default art | string | `nil`
+`notify` | Show notification pop-ups | string | "on"
+`followtag` | Notification behaviour | boolean | false
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+\* In Lua, "\\\\" means "\" escaped.
+
+The default `cover_pattern` definition will make the widget set the first JPG, JPEG, PNG or GIF file found in the directory as the album art.
+
+Pay attention to case sensitivity when defining `music_dir`.
+
+`settings` can use `mpd_now` table, which contains the following values:
+
+(**note:** the first four are boolean [flags](https://github.com/lcpz/lain/pull/205), the remaining are all strings)
+
+- random_mode
+- single_mode
+- repeat_mode
+- consume_mode
+- pls_pos (playlist position)
+- pls_len (playlist length)
+- state (possible values: "play", "pause", "stop")
+- file
+- artist
+- title
+- name
+- album
+- track
+- genre
+- date
+- [time](https://github.com/lcpz/lain/pull/90) (length of current song, in seconds)
+- [elapsed](https://github.com/lcpz/lain/pull/90) (elapsed time of current song, in seconds)
+- volume
+
+And can modify `mpd_notification_preset` table, which will be the preset for the naughty notifications. Check [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for the list of variables it can contain. Default definition:
+
+```lua
+mpd_notification_preset = {
+ title = "Now playing",
+ timeout = 6,
+ text = string.format("%s (%s) - %s\n%s", mpd_now.artist,
+ mpd_now.album, mpd_now.date, mpd_now.title)
+}
+```
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The textbox | `wibox.widget.textbox`
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+You can use `timer` to start/stop the widget as you like.
+
+## Key bindings
+
+You can control the widget with key bindings like these:
+
+```lua
+-- MPD control
+awful.key({ altkey, "Control" }, "Up",
+ function ()
+ awful.spawn.with_shell("mpc toggle || ncmpc toggle || pms toggle")
+ mympd.update()
+ end),
+awful.key({ altkey, "Control" }, "Down",
+ function ()
+ awful.spawn.with_shell("mpc stop || ncmpc stop || pms stop")
+ mympd.update()
+ end),
+awful.key({ altkey, "Control" }, "Left",
+ function ()
+ awful.spawn.with_shell("mpc prev || ncmpc prev || pms prev")
+ mympd.update()
+ end),
+awful.key({ altkey, "Control" }, "Right",
+ function ()
+ awful.spawn.with_shell("mpc next || ncmpc next || pms next")
+ mympd.update()
+ end),
+```
+
+Where `altkey = "Mod1"`.
+
+If you don't use the widget for long periods and wish to spare CPU, you can toggle it with a key binding like this:
+
+```lua
+-- disable MPD widget
+awful.key({ altkey }, "0",
+ function ()
+ local common = {
+ text = "MPD widget ",
+ position = "top_middle",
+ timeout = 2
+ }
+ if mympd.timer.started then
+ mympd.timer:stop()
+ common.text = common.text .. markup.bold("OFF")
+ else
+ mympd.timer:start()
+ common.text = common.text .. markup.bold("ON")
+ end
+ naughty.notify(common)
+ end),
+```
+
+## Notes
+
+### Cover not showing in notifications
+
+If the cover file is existent but not showed in notifications, [try](https://github.com/lcpz/lain/issues/393) setting `music_dir` to a symlink of your music folder, rather than to a physical path. This can be easily done through
+```shell
+ln -s /the/real_path_to_your_music/ /home/username/Music
+```
+However, this only applies if the music is stored outside your user-specific folder, for instance in an external partition.
+
+### Always use `set_markup`
+
+In `settings`, if you use `widget:set_text`, [it will ignore Pango markup](https://github.com/lcpz/lain/issues/258), so be sure to always use `widget:set_markup`.
+
+### Volume fade in toggling MPD
+
+If you want a fade in/out in toggling MPD, you can put [this script](https://gist.github.com/lcpz/76e315bc27c6cdf7edd5021964b88df1) in your local `bin` directory:
+
+```shell
+$ curl https://gist.githubusercontent.com/lcpz/76e315bc27c6cdf7edd5021964b88df1/raw/97f7ba586418a4e07637cfbc91d2974278dfa623/mpd-fade -o ~/bin/mpc-fade
+$ chmod +x ~/bin/mpc-fade
+```
+
+Set your 1% decrease/increase commands [here](https://gist.github.com/lcpz/76e315bc27c6cdf7edd5021964b88df1#file-mpd-fade-L8-L9), then use a key binding like this:
+
+```lua
+-- MPD toggle with volume fading
+awful.key({ "Shift" }, "Pause",
+ function()
+ awful.spawn.easy_async("mpc-fade 20 4", -- mpc-fade
+ function(stdout, stderr, reason, exit_code)
+ mympd.update()
+ end)
+ end),
+```
diff --git a/awesome/lain/wiki/net.md b/awesome/lain/wiki/net.md
new file mode 100644
index 0000000..90776f2
--- /dev/null
+++ b/awesome/lain/wiki/net.md
@@ -0,0 +1,116 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Monitors network interfaces and shows current traffic.
+
+```lua
+local mynet = lain.widget.net()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 2
+`iface` | Network device(s) | string (single interface) or table of strings (multiple interfaces) | autodetected
+`units` | Units | integer | 1024 (kilobytes)
+`notify` | Display "no carrier" notifications | string | "on"
+`wifi_state` | Get Wi-Fi connection status | string | "off"
+`eth_state` | Get Ethernet connection status | string | "off"
+`screen` | Notifications screen | integer | 1
+`settings` | User settings | function | empty function
+
+`iface` can be a string or an table of the form `{ "eth0", "eth1", ... }` containing a list of the devices to collect data on.
+
+If more than one device is included, `net_now.sent` and `net_now.received` will contain cumulative values over all given devices.
+Use `net_now.devices["eth0"]` to access `sent`, `received`, `state` or `carrier` per device.
+
+Possible alternative values for `units` are 1 (byte) or multiple of 1024: 1024^2 (MB), 1024^3 (GB), and so on.
+
+If `notify = "off"` is set, the widget won't display a notification when there's no carrier.
+
+`settings` can use the following `iface` related strings:
+
+- `net_now.carrier` ("0", "1");
+- `net_now.state` ("up", "down");
+- `net_now.sent` and `net_now.received` (numbers) will be the sum across all specified interfaces;
+- `net_now.devices["interface"]` contains the previous attributes for each detected interface.
+
+If `wifi_state = "on"` is set, `settings` can use the following extra strings attached to `net_now.devices["wireless interface"]`:
+- `wifi` (true, false) indicates if the interface is connected to a network;
+- `signal` (number) is the connection signal strength in dBm;
+
+If `eth_state = "on"` is set, `settings` can use the following extra string: `net_now.devices["ethernet interface"].ethernet`, which is a boolean indicating if an Ethernet connection's active.
+
+For compatibility reasons, if multiple devices are given, `net_now.carrier` and `net_now.state` correspond to the last interface in the `iface` table and should not be relied upon (deprecated).
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
+`get_devices` | Update the `iface` table | function
+
+## Notes
+
+### Setting `iface` manually
+
+If the widget [spawns a "no carrier" notification and you are sure to have an active network device](https://github.com/lcpz/lain/issues/102), then autodetection is probably not working. This may due to [your user privileges](https://github.com/lcpz/lain/issues/102#issuecomment-246470526). In this case you can set `iface` manually. You can see which device is **UP,LOWER_UP** with the following command:
+
+```shell
+ip link show
+```
+## Usage examples
+### Two widgets for upload/download rates from the same `iface`
+
+```lua
+local mynetdown = wibox.widget.textbox()
+local mynetup = lain.widget.net {
+ settings = function()
+ widget:set_markup(net_now.sent)
+ mynetdown:set_markup(net_now.received)
+ end
+}
+```
+### Wi-Fi/Ethernet connection and signal strength indicator
+```lua
+local wifi_icon = wibox.widget.imagebox()
+local eth_icon = wibox.widget.imagebox()
+local net = lain.widget.net {
+ notify = "off",
+ wifi_state = "on",
+ eth_state = "on",
+ settings = function()
+ local eth0 = net_now.devices.eth0
+ if eth0 then
+ if eth0.ethernet then
+ eth_icon:set_image(ethernet_icon_filename)
+ else
+ eth_icon:set_image()
+ end
+ end
+
+ local wlan0 = net_now.devices.wlan0
+ if wlan0 then
+ if wlan0.wifi then
+ local signal = wlan0.signal
+ if signal < -83 then
+ wifi_icon:set_image(wifi_weak_filename)
+ elseif signal < -70 then
+ wifi_icon:set_image(wifi_mid_filename)
+ elseif signal < -53 then
+ wifi_icon:set_image(wifi_good_filename)
+ elseif signal >= -53 then
+ wifi_icon:set_image(wifi_great_filename)
+ end
+ else
+ wifi_icon:set_image()
+ end
+ end
+ end
+}
+```
\ No newline at end of file
diff --git a/awesome/lain/wiki/pulse.md b/awesome/lain/wiki/pulse.md
new file mode 100644
index 0000000..7a05cca
--- /dev/null
+++ b/awesome/lain/wiki/pulse.md
@@ -0,0 +1,136 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows and controls PulseAudio volume.
+
+```lua
+local volume = lain.widget.pulse()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 5
+`devicetype` | PulseAudio device type | string ("sink", "source") | "sink"
+`cmd` | PulseAudio command | string or function | see [here](https://github.com/lcpz/lain/blob/master/widget/pulse.lua#L26)
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`cmd` is a terminal command to catch infos from current default device. You can redefine it, being sure that the ouput is something like this:
+
+```shell
+* index: 0
+ volume: front-left: 18340 / 28% / -33.18 dB, front-right: 18340 / 28% / -33.18 dB
+ muted: no
+ device.string = "front:1"
+```
+
+If your devices change dynamically, you can define it as a function which returns a command string.
+
+If sed doesn't work, you can try with a grep variant:
+
+```lua
+cmd = "pacmd list-" .. pulse.devicetype .. "s | grep -e $(pactl info | grep -e 'ink' | cut -d' ' -f3) -e 'volume: front' -e 'muted'"
+```
+
+### `settings` variables
+
+`settings` can use the following variables:
+
+Variable | Meaning | Type | Values
+--- | --- | --- | ---
+`volume_now.device` | Device name | string | device name or "N/A"
+`volume_now.index` | Device index | string | >= "0"
+`volume_now.muted` | Device mute status | string | "yes", "no", "N/A"
+`volume_now.channel` | Device channels | table of string integers | `volume_now.channel[i]`, where `i >= 1`
+`volume_now.left` | Front left sink level or first source | string | "0"-"100"
+`volume_now.right` | Front right sink level or second source | string | "0"-"100"
+
+`volume_now.channel` is a table of your PulseAudio devices. Fetch a channel level like this: `volume_now.channel[i]`, where `i >= 1`.
+
+`volume_now.{left,right}` are pointers for `volume_now.{channel[1], channel[2]}` (stereo).
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
+
+## Buttons
+
+```lua
+volume.widget:buttons(awful.util.table.join(
+ awful.button({}, 1, function() -- left click
+ awful.spawn("pavucontrol")
+ end),
+ awful.button({}, 2, function() -- middle click
+ os.execute(string.format("pactl set-sink-volume %s 100%%", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 3, function() -- right click
+ os.execute(string.format("pactl set-sink-mute %s toggle", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 4, function() -- scroll up
+ os.execute(string.format("pactl set-sink-volume %s +1%%", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 5, function() -- scroll down
+ os.execute(string.format("pactl set-sink-volume %s -1%%", volume.device))
+ volume.update()
+ end)
+))
+```
+
+## Keybindings
+
+```lua
+-- PulseAudio volume control
+awful.key({ altkey }, "Up",
+ function ()
+ os.execute(string.format("pactl set-sink-volume %s +1%%", volume.device))
+ volume.update()
+ end),
+awful.key({ altkey }, "Down",
+ function ()
+ os.execute(string.format("pactl set-sink-volume %s -1%%", volume.device))
+ volume.update()
+ end),
+awful.key({ altkey }, "m",
+ function ()
+ os.execute(string.format("pactl set-sink-mute %s toggle", volume.device))
+ volume.update()
+ end),
+awful.key({ altkey, "Control" }, "m",
+ function ()
+ os.execute(string.format("pactl set-sink-volume %s 100%%", volume.device))
+ volume.update()
+ end),
+awful.key({ altkey, "Control" }, "0",
+ function ()
+ os.execute(string.format("pactl set-sink-volume %s 0%%", volume.device))
+ volume.update()
+ end),
+```
+
+where `altkey = "Mod1"`.
+
+## Example
+
+```lua
+-- PulseAudio volume (based on multicolor theme)
+local volume = lain.widget.pulse {
+ settings = function()
+ vlevel = volume_now.left .. "-" .. volume_now.right .. "% | " .. volume_now.device
+ if volume_now.muted == "yes" then
+ vlevel = vlevel .. " M"
+ end
+ widget:set_markup(lain.util.markup("#7493d2", vlevel))
+ end
+}
+```
diff --git a/awesome/lain/wiki/pulsebar.md b/awesome/lain/wiki/pulsebar.md
new file mode 100644
index 0000000..de3a475
--- /dev/null
+++ b/awesome/lain/wiki/pulsebar.md
@@ -0,0 +1,98 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows PulseAudio volume with a progressbar; provides tooltips and notifications.
+
+```lua
+local volume = lain.widget.pulsebar()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 5
+`settings` | User settings | function | empty function
+`width` | Bar width | number | 63
+`height` | Bar height | number | 1
+`margins` | Bar margins | number | 1
+`paddings` | Bar paddings | number | 1
+`ticks` | Set bar ticks on | boolean | false
+`ticks_size` | Ticks size | number | 7
+`tick` | String for a notification tick | string | "|"
+`tick_pre` | String for the left notification delimeter | string | "["
+`tick_post` | String for the right notification delimeter | string | "]"
+`tick_none` | String for an empty notification tick | string | " "
+`scallback` | [PulseAudio sink callback](https://github.com/lcpz/lain/wiki/pulseaudio/) | function | `nil`
+`sink` | Mixer sink | number | 0
+`colors` | Bar colors | table | see [Default colors](https://github.com/lcpz/lain/wiki/pulsebar#default-colors)
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/pulsebar#default-notification_preset)
+`followtag` | Display the notification on currently focused screen | boolean | false
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/pulsebar#default-notification_preset)
+`devicetype` | PulseAudio device type | string ("sink", "source") | "sink"
+`cmd` | PulseAudio command | string or function | see [here](https://github.com/lcpz/lain/blob/master/widget/pulsebar.lua#L48)
+
+Read [pulse](https://github.com/lcpz/lain/wiki/pulse) page for `cmd` settings.
+
+`settings` can use [these variables](https://github.com/lcpz/lain/wiki/pulse#settings-variables).
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+### Default colors
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`background` | Bar backgrund color | string | "#000000"
+`mute` | Bar mute color | string | "#EB8F8F"
+`unmute` | Bar unmute color | string | "#A4CE8A"
+
+### Default `notification_preset`
+
+```lua
+notification_preset = {
+ font = "Monospace 10"
+}
+```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`bar` | The widget | `wibox.widget.progressbar`
+`device` | PulseAudio device | string
+`notify` | The notification | function
+`update` | Update state | function
+`tooltip` | The tooltip | `awful.tooltip`
+
+## Buttons
+
+```lua
+volume.bar:buttons(awful.util.table.join(
+ awful.button({}, 1, function() -- left click
+ awful.spawn("pavucontrol")
+ end),
+ awful.button({}, 2, function() -- middle click
+ os.execute(string.format("pactl set-sink-volume %d 100%%", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 3, function() -- right click
+ os.execute(string.format("pactl set-sink-mute %d toggle", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 4, function() -- scroll up
+ os.execute(string.format("pactl set-sink-volume %d +1%%", volume.device))
+ volume.update()
+ end),
+ awful.button({}, 5, function() -- scroll down
+ os.execute(string.format("pactl set-sink-volume %d -1%%", volume.device))
+ volume.update()
+ end)
+))
+```
+
+## Keybindings
+
+Same as [here](https://github.com/lcpz/lain/wiki/pulse#keybindings). If you want notifications, use `volume.notify()` instead of `volume.update()`.
diff --git a/awesome/lain/wiki/redshift.md b/awesome/lain/wiki/redshift.md
new file mode 100644
index 0000000..ea6f637
--- /dev/null
+++ b/awesome/lain/wiki/redshift.md
@@ -0,0 +1,103 @@
+### What is Redshift? #
+
+[**Project homepage**](http://jonls.dk/redshift/)
+
+>**Redshift** is an application that adjusts the computer display's color temperature based upon the Sun's apparent position in relation to the user's location on Earth.
+>
+>The program is free software, inspired by the proprietary f.lux, and can be used to reduce eye strain as well as insomnia and delayed sleep phase syndrome.
+>
+>The computer display's color temperature transitions evenly from night to daytime temperature to allow the user's eyes to slowly adapt. At night, the color temperature is low and is typically 3000–4000 K (default is 3500 K), preferably matching the room's lighting temperature. Typical color temperature during the daytime is 5500–6500 K (default is 5500 K).
+
+**Source:** [Wikipedia](https://en.wikipedia.org/wiki/Redshift_%28software%29)
+
+### Preparations
+
+**Redshift must be installed** on your system if you want to use this widget.
+
+Packages should be available for most distributions. Source code and build instructions can be found on Github [here](https://github.com/jonls/redshift).
+
+You also need a valid config file. Please see the [project homepage](http://jonls.dk/redshift/) for details. An example: [`~/.config/redshift.conf`](https://github.com/jonls/redshift/blob/master/redshift.conf.sample).
+
+You have to match the location settings to your personal situation: you can adjust the `lat` and `lon` variables using a [web service](https://encrypted.google.com/search?q=get+latitude+and+longitude).
+
+You might also want to modify the color temperatures to fit your preferences.
+
+### Using the widget
+
+This widget provides the following functions:
+
+| function | meaning |
+| --- | --- |
+| `redshift.toggle()` | Toggles Redshift adjustments on or off, and also restarts it if terminates. |
+| `redshift.attach(widget, update_function)` | Attach to a widget. Click on the widget to toggle redshift on or off. `update_function` is a callback function which will be triggered each time Redshift changes its status. (See the examples below.) |
+
+### Usage examples
+
+#### Textbox status widget
+
+```lua
+myredshift = wibox.widget.textbox()
+lain.widget.contrib.redshift.attach(
+ myredshift,
+ function (active)
+ if active then
+ myredshift:set_text("RS on")
+ else
+ myredshift:set_text("RS off")
+ end
+ end
+)
+```
+
+Then add `myredshift` to your wibox.
+
+#### Checkbox status widget
+
+```lua
+local markup = lain.util.markup
+
+local myredshift = wibox.widget{
+ checked = false,
+ check_color = "#EB8F8F",
+ border_color = "#EB8F8F",
+ border_width = 1,
+ shape = gears.shape.square,
+ widget = wibox.widget.checkbox
+}
+
+local myredshift_text = wibox.widget{
+ align = "center",
+ widget = wibox.widget.textbox,
+}
+
+local myredshift_stack = wibox.widget{
+ myredshift,
+ myredshift_text,
+ layout = wibox.layout.stack
+}
+
+lain.widget.contrib.redshift.attach(
+ myredshift,
+ function (active)
+ if active then
+ -- rename 'beautiful' to 'theme' if using awesome-copycats
+ myredshift_text:set_markup(markup(beautiful.bg_normal, "R"))
+ else
+ -- rename 'beautiful' to 'theme' if using awesome-copycats
+ myredshift_text:set_markup(markup(beautiful.fg_normal, "R"))
+ end
+ myredshift.checked = active
+ end
+)
+```
+
+Then add `myredshift_stack` to your wibox.
+
+#### Keybinding
+
+Add this to the keybindings in your `rc.lua`:
+
+```lua
+-- Toggle Redshift with Mod+Shift+t
+awful.key({ modkey, "Shift" }, "t", function () lain.widget.contrib.redshift.toggle() end),
+```
diff --git a/awesome/lain/wiki/sysload.md b/awesome/lain/wiki/sysload.md
new file mode 100644
index 0000000..5ed4c97
--- /dev/null
+++ b/awesome/lain/wiki/sysload.md
@@ -0,0 +1,28 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows the current system load.
+
+```lua
+mysysload = lain.widget.sysload()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 2
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`settings` can use strings `load_1`, `load_5` and `load_15`, which are the load averages over 1, 5, and 15 minutes.
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
\ No newline at end of file
diff --git a/awesome/lain/wiki/task.md b/awesome/lain/wiki/task.md
new file mode 100644
index 0000000..af53a6a
--- /dev/null
+++ b/awesome/lain/wiki/task.md
@@ -0,0 +1,51 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Attaches a [taskwarrior](http://taskwarrior.org) notifications to a widget, and lets you execute `task` commands from the promptbox.
+
+```lua
+lain.widget.contrib.task.attach(widget, args)
+```
+
+`args` is an optional table which can contain:
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`show_cmd` | Taskwarrior command to show in the popup | string | "task next"
+`prompt_text` | Prompt text | string | "Enter task command: "
+`followtag` | Display the notification on currently focused screen | boolean | false
+`notification_preset` | Notification preset | table | See [default `notification_preset`](https://github.com/lcpz/lain/wiki/task#default-notification_preset)
+
+The tasks are shown in a notification popup when the mouse is moved over the attached `widget`, and the popup is hidden when the mouse is moved away. By default, the notification will show the output of `task next`. With `show_cmd`, the `task` popup command can be customized, for example if you want to [filter the tasks](https://taskwarrior.org/docs/filter.html) or show a [custom report](https://github.com/lcpz/lain/pull/213).
+
+With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+You can call the notification with a keybinding like this:
+
+```lua
+awful.key({ modkey, altkey }, "t", function () lain.widget.contrib.task.show(scr) end),
+```
+
+where ``altkey = "Mod1"`` and `scr` (optional) indicates the screen which you want the notification in.
+
+And you can prompt to input a `task` command with a keybinding like this:
+
+```lua
+awful.key({ altkey }, "t", lain.widget.contrib.task.prompt),
+```
+
+### Default `notification_preset`
+
+```lua
+notification_preset = {
+ font = "Monospace 10",
+ icon = helpers.icons_dir .. "/taskwarrior.png"
+}
+```
+
+## Note
+
+* If your widget does not display `task next` output, try changing Taskwarrior verbose, for instance: `show_cmd = 'task rc.verbose:label'` or `show_cmd = 'task rc.verbose:nothing'`.
\ No newline at end of file
diff --git a/awesome/lain/wiki/temp.md b/awesome/lain/wiki/temp.md
new file mode 100644
index 0000000..e16fbe2
--- /dev/null
+++ b/awesome/lain/wiki/temp.md
@@ -0,0 +1,36 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Shows the current CPU temperature.
+
+```lua
+local mytemp = lain.widget.temp()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`timeout` | Refresh timeout (in seconds) | integer | 30
+`tempfile` | Path of file which stores core temperature value | string | "/sys/devices/virtual/thermal/thermal_zone0/temp"
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+`settings` can use the string `coretemp_now`, which contains the info retrieved from `tempfile`, and the table `temp_now`, which contains an entry for each `*temp*` file in each directory in the following paths:
+
+```shell
+/sys/class/devices/virtual/thermal/thermal_zone*
+/sys/class/devices/platform/coretemp*/hwmon/hwon*
+```
+
+All values are expressed in Celsius (GNU/Linux standard).
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`update` | Update `widget` | function
diff --git a/awesome/lain/wiki/tp_smapi.md b/awesome/lain/wiki/tp_smapi.md
new file mode 100644
index 0000000..3fa8adf
--- /dev/null
+++ b/awesome/lain/wiki/tp_smapi.md
@@ -0,0 +1,104 @@
+# Description
+
+[`tp_smapi`](http://www.thinkwiki.org/wiki/Tp_smapi) interface and widget creator.
+
+```lua
+local tp_smapi = lain.widget.contrib.tp_smapi(apipath)
+```
+
+The argument `apipath` is an optional string which defines the API path. Its default value is `"/sys/devices/platform/smapi"`.
+
+# Functions
+
+## tp_smapi.get(batid, feature)
+
+Gets the `feature` of battery `batid`. Returns a string. The list of available features is available at [this page](https://www.thinkwiki.org/wiki/Tp_smapi#Battery_status_features).
+
+## tp_smapi.installed(batid)
+
+Checks if battery `batid` is installed. Returns a boolean.
+
+## tp_smapi.status(batid)
+
+Gets the status of battery `batid`. Returns a string ("charging", "discharging", or "full").
+
+## tp_smapi.percentage(batid)
+
+Gets the percentage of battery `batid`. Returns a numeric string.
+
+## tp_smapi.time(batid)
+
+Gets the time of battery `batid`. Depending on the current status, it can be either running or charging time. Returns a string of the format `HH:MM`.
+
+## tp_smapi.hide()
+
+Removes any notification spawned by `tp_smapi.show`.
+
+## tp_smapi.show(batid, seconds, scr)
+
+Notifies the current information of battery `batid` for `seconds` seconds on screen `scr`.
+The argument `scr` is optional, and if missing, the notification will be displayed on the currently focused screen.
+
+## tp_smapi.create_widget(args)
+
+Creates a [lain widget](https://github.com/lcpz/lain/wiki/Widgets#usage) of the available ThinkPad batteries.
+
+```lua
+local tpbat = tp_smapi.create_widget()
+```
+
+### Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`widget` | The widget type to use | [`wibox.widget`](https://awesomewm.org/doc/api/classes/wibox.widget.html) | [`wibox.widget.textbox`](https://awesomewm.org/doc/api/classes/wibox.widget.textbox.html)
+`timeout` | Refresh timeout (in seconds) | integer | 30
+`pspath` | Power supply directory path | string | "/sys/class/power_supply/"
+`battery` | Single battery id | string | autodetected
+`batteries` | Multiple batteries id table | table of strings | autodetected
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+The widget will try to autodetect `battery` and `batteries`. If something
+goes wrong, you will have to define them manually. In that case, you only have
+to define one between `battery` and `batteries`. If you have one battery, you
+can either use `args.battery = "BAT*"` or `args.batteries = {"BAT*"}`, where `BAT*`
+is the identifier of your battery in `pspath` (do not use it as a wildcard).
+Of course, if you have multiple batteries, you need to use the latter option.
+
+If you define `pspath`, **be sure** to not forget the final slash (/).
+
+`settings` can use the `tpbat_now` table, which contains the following strings:
+
+- `status`, general status ("N/A", "discharging", "charging", "full");
+- `n_status[i]`, i-th battery status (like above);
+- `n_perc[i]`, i-th battery charge percentage (like above);
+- `n_time[i]`, i-th battery running or charging time (HH:MM string or "N/A");
+
+`n_time[i]` is the running time of battery `i` when it is discharging, and the charging time otherwise.
+
+### Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | [`wibox.widget`](https://awesomewm.org/doc/api/classes/wibox.widget.html) | [textbox](https://awesomewm.org/doc/api/classes/wibox.widget.textbox.html)
+`batteries` | Battery identifiers | Table of strings
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+### Usage example
+
+```lua
+local tp_smapi = lain.widget.contrib.tp_smapi()
+local bat = tp_smapi.create_widget {
+ battery = "BAT0",
+ settings = function()
+ widget:set_markup(tpbat_now.n_perc[1] .. "%")
+ end
+}
+
+bat.widget:connect_signal("mouse::enter", function () tp_smapi.show("BAT0") end)
+bat.widget:connect_signal("mouse::leave", function () tp_smapi.hide() end)
+```
diff --git a/awesome/lain/wiki/watch.md b/awesome/lain/wiki/watch.md
new file mode 100644
index 0000000..ff18a5c
--- /dev/null
+++ b/awesome/lain/wiki/watch.md
@@ -0,0 +1,222 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Template for asynchronous watcher widgets.
+
+Executes an input command and makes the user feed a `wibox.widget` with the output.
+
+```lua
+local mywatch = lain.widget.watch()
+```
+
+This has been implemented in Awesome 4.0 as [`awful.widget.watch`](https://awesomewm.org/doc/api/classes/awful.widget.watch.html). But while Awesome `watch` returns only the widget, Lain one returns a table including its timer and internal update function too.
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`widget` | Widget to feed | `wibox.widget` | `wibox.widget.textbox`
+`timeout` | Refresh timeout seconds | number | 5
+`cmd` | The command to execute | string **or** table | `nil`
+`nostart` | Widget timer doesn't start immediately | boolean | false
+`stoppable` | Widget timer is stoppable | boolean | false
+`settings` | User settings | function | see [Default `settings` function](https://github.com/lcpz/lain/wiki/watch#default-settings-function)
+
+If your command needs a shell, you need to set `cmd` as an array of 3 strings, where the first contains the shell, the second contains `-c`, and the third contains the actual command. Example:
+
+```lua
+cmd = { awful.util.shell, "-c", "myactualcommand" }
+```
+
+`settings` can use the string `output`, which is the output of `cmd`.
+
+### Default `settings` function
+
+```lua
+settings = function() widget:set_text(output) end
+```
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | input widget type or `wibox.widget.textbox`
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html) or `nil`
+
+The `update` function can be used to refresh the widget before `timeout` expires.
+
+If `stoppable == true`, the widget will have an ad-hoc timer, which you can control though `timer` variable.
+
+## Use case examples
+
+### bitcoin
+
+```lua
+-- Bitcoin to USD current price, using Coinbase V1 API
+local bitcoin = lain.widget.watch({
+ timeout = 43200, -- half day
+ stoppable = true,
+ cmd = "curl -m5 -s 'https://coinbase.com/api/v1/prices/buy'",
+ settings = function()
+ local btc, pos, err = require("lain.util").dkjson.decode(output, 1, nil)
+ local btc_price = (not err and btc and btc["subtotal"]["amount"]) or "N/A"
+
+ -- customize here
+ widget:set_text(btc_price)
+ end
+})
+```
+
+### btrfs
+
+```lua
+-- btrfs root df
+local myrootfs = lain.widget.watch({
+ timeout = 600,
+ cmd = "btrfs filesystem df -g /",
+ settings = function()
+ local total, used = string.match(output, "Data.-total=(%d+%.%d+)GiB.-used=(%d+%.%d+)GiB")
+ local percent_used = math.ceil((tonumber(used) / tonumber(total)) * 100)
+
+ -- customize here
+ widget:set_text(" [/: " .. percent_used .. "%] ")
+ end
+})
+```
+
+### cmus
+
+```lua
+-- cmus audio player
+local cmus = lain.widget.watch({
+ timeout = 2,
+ stoppable = true,
+ cmd = "cmus-remote -Q",
+ settings = function()
+ local cmus_now = {
+ state = "N/A",
+ artist = "N/A",
+ title = "N/A",
+ album = "N/A"
+ }
+
+ for w in string.gmatch(output, "(.-)tag") do
+ a, b = w:match("(%w+) (.-)\n")
+ cmus_now[a] = b
+ end
+
+ -- customize here
+ widget:set_text(cmus_now.artist .. " - " .. cmus_now.title)
+ end
+})
+```
+
+### maildir
+
+```lua
+-- checks whether there are files in the "new" directories of a mail dirtree
+local mailpath = "~/Mail"
+local mymaildir = lain.widget.watch({
+ timeout = 60,
+ stoppable = true,
+ cmd = { awful.util.shell, "-c", string.format("ls -1dr %s/*/new/*", mailpath) },
+ settings = function()
+ local inbox_now = { digest = "" }
+
+ for dir in output:gmatch(".-/(%w+)/new") do
+ inbox_now[dir] = 1
+ for _ in output:gmatch(dir) do
+ inbox_now[dir] = inbox_now[dir] + 1
+ end
+ if #inbox_now.digest > 0 then inbox_now.digest = inbox_now.digest .. ", " end
+ inbox_now.digest = inbox_now.digest .. string.format("%s (%d)", dir, inbox_now[dir])
+ end
+
+ -- customize here
+ widget:set_text("mail: " .. inbox_now.digest)
+ end
+})
+```
+
+### mpris
+
+```lua
+-- infos from mpris clients such as spotify and VLC
+-- based on https://github.com/acrisci/playerctl
+local mpris = lain.widget.watch({
+ cmd = "playerctl status && playerctl metadata",
+ timeout = 2,
+ stoppable = true,
+ settings = function()
+ local escape_f = require("awful.util").escape
+ local mpris_now = {
+ state = "N/A",
+ artist = "N/A",
+ title = "N/A",
+ art_url = "N/A",
+ album = "N/A",
+ album_artist = "N/A"
+ }
+
+ mpris_now.state = string.match(output, "Playing") or
+ string.match(output, "Paused") or "N/A"
+
+ for k, v in string.gmatch(output, "'[^:]+:([^']+)':[%s]<%[?'([^']+)'%]?>")
+ do
+ if k == "artUrl" then mpris_now.art_url = v
+ elseif k == "artist" then mpris_now.artist = escape_f(v)
+ elseif k == "title" then mpris_now.title = escape_f(v)
+ elseif k == "album" then mpris_now.album = escape_f(v)
+ elseif k == "albumArtist" then mpris_now.album_artist = escape_f(v)
+ end
+ end
+
+ -- customize here
+ widget:set_text(mpris_now.artist .. " - " .. mpris_now.title)
+ end
+})
+```
+
+### upower
+
+```lua
+-- battery infos from freedesktop upower
+local mybattery = lain.widget.watch({
+ timeout = 30,
+ cmd = { awful.util.shell, "-c", "upower -i /org/freedesktop/UPower/devices/battery_BAT | sed -n '/present/,/icon-name/p'" },
+ settings = function()
+ local bat_now = {
+ present = "N/A",
+ state = "N/A",
+ warninglevel = "N/A",
+ energy = "N/A",
+ energyfull = "N/A",
+ energyrate = "N/A",
+ voltage = "N/A",
+ percentage = "N/A",
+ capacity = "N/A",
+ icon = "N/A"
+ }
+
+ for k, v in string.gmatch(output, '([%a]+[%a|-]+):%s*([%a|%d]+[,|%a|%d]-)') do
+ if k == "present" then bat_now.present = v
+ elseif k == "state" then bat_now.state = v
+ elseif k == "warning-level" then bat_now.warninglevel = v
+ elseif k == "energy" then bat_now.energy = string.gsub(v, ",", ".") -- Wh
+ elseif k == "energy-full" then bat_now.energyfull = string.gsub(v, ",", ".") -- Wh
+ elseif k == "energy-rate" then bat_now.energyrate = string.gsub(v, ",", ".") -- W
+ elseif k == "voltage" then bat_now.voltage = string.gsub(v, ",", ".") -- V
+ elseif k == "percentage" then bat_now.percentage = tonumber(v) -- %
+ elseif k == "capacity" then bat_now.capacity = string.gsub(v, ",", ".") -- %
+ elseif k == "icon-name" then bat_now.icon = v
+ end
+ end
+
+ -- customize here
+ widget:set_text("Bat: " .. bat_now.percentage .. " " .. bat_now.state)
+ end
+})
+```
diff --git a/awesome/lain/wiki/weather.md b/awesome/lain/wiki/weather.md
new file mode 100644
index 0000000..6052156
--- /dev/null
+++ b/awesome/lain/wiki/weather.md
@@ -0,0 +1,133 @@
+## Usage
+
+[Read here.](https://github.com/lcpz/lain/wiki/Widgets#usage)
+
+### Description
+
+Provides current weather status widgets and X-days forecast pop-up notifications.
+
+Powered by OpenWeatherMap. Obtain a free API key [here](http://openweathermap.org/api) and set it as the `APPID` argument.
+
+By default, it uses [current](http://openweathermap.org/current) for current weather data and [forecast16](http://openweathermap.org/forecast16) for forecasts.
+
+```lua
+local myweather = lain.widget.weather()
+```
+
+## Input table
+
+Variable | Meaning | Type | Default
+--- | --- | --- | ---
+`APPID` | API key | String | `nil`
+`timeout` | Refresh timeout seconds for current weather status | number | 900 (15 min)
+`current_call` | Command to fetch weather status data from the API | string | see `default_current_call`
+`forecast_call` | Command to fetch forecast data from the API | string | see `default_forecast_call`
+`city_id` | API city code | number | not set
+`units` | Temperature units system | string | "metric"
+`lang` | API data localization | string | "en"
+`cnt` | Forecast days interval | integer | 5
+`icons_path` | Icons path | string | `lain/icons/openweathermap`
+`notification_preset` | Preset for notifications | table | empty table
+`notification_text_fun` | Function to format forecast notifications | function | see `notification_text_fun` below
+`weather_na_markup` | Markup to be used when weather textbox is not available | text | " N/A "
+`followtag` | Display the notification on currently focused screen | boolean | false
+`showpopup` | Display popups with mouse hovering | string, possible values: "on", "off" | "on"
+`settings` | User settings | function | empty function
+`widget` | Widget to render | function | `wibox.widget.textbox`
+
+- ``default_current_call``
+
+ `"curl -s 'http://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s&APPID=%s'"`
+
+ You can rewrite it using any fetcher solution you like, or you can modify it in order to fetch data by city name, instead of ID: just replace `id` with `q`:
+
+ `"curl -s 'http://api.openweathermap.org/data/2.5/weather?q=%s&units=%s&lang=%s&APPID=%s'"`
+
+ and set `city_id` with your city name, for instance `city_id = "London,UK"`.
+
+- ``default_forecast_call``
+
+ `"curl -s 'http://api.openweathermap.org/data/2.5/forecast/daily?id=%s&units=%s&lang=%s&APPID=%s'"`
+
+ Like above.
+
+- ``city_id``
+
+ An integer that defines the OpenWeatherMap ID code of your city.
+ To obtain it go to [OpenWeatherMap](http://openweathermap.org/) and query for your city in the top search bar. The link will look like this:
+
+ http://openweathermap.org/city/2643743
+
+ your `city_id` is the number at the end.
+
+- ``units``
+
+ - For temperature in Fahrenheit use `units = "imperial"`
+ - For temperature in Celsius use `units = "metric"` (Lain default)
+ - For temperature in Kelvin use `units = "standard"` (OpenWeatherMap default)
+
+- ``lang``
+
+ See *Multilingual Support* section [here](http://openweathermap.org/current).
+
+- ``icons_path``
+
+ You can set your own icons path if you don't wish to use `lain/icons/openweathermap`. Just be sure that your icons are PNGs and named exactly like [OpenWeatherMap ones](http://openweathermap.org/weather-conditions).
+
+- ``notification_preset``
+
+ Notifications preset table. See [here](https://awesomewm.org/doc/api/libraries/naughty.html#notify) for the details.
+
+- ``notification_text_fun``
+ ```lua
+ function (wn)
+ local day = os.date("%a %d", wn["dt"])
+ local temp = math.floor(wn["main"]["temp"])
+ local desc = wn["weather"][1]["description"]
+
+ return string.format("%s: %s, %d ", day, desc, temp)
+ end
+ ```
+
+- ``followtag``
+
+ With multiple screens, the default behaviour is to show a visual notification pop-up window on the first screen. By setting `followtag` to `true` it will be shown on the currently focused tag screen.
+
+- ``settings``
+
+ In your `settings` function, you can use `widget` variable to refer to the textbox, and the dictionary `weather_now` to refer to data retrieved by `current_call`. The dictionary is built with [dkjson library](http://dkolf.de/src/dkjson-lua.fsl/home), and its structure is defined [here](http://openweathermap.org/weather-data).
+ For instance, you can retrieve current weather status and temperature in this way:
+ ```lua
+ descr = weather_now["weather"][1]["description"]:lower()
+ units = math.floor(weather_now["main"]["temp"])
+ ```
+
+## Output table
+
+Variable | Meaning | Type
+--- | --- | ---
+`widget` | The widget | `wibox.widget.textbox`
+`icon` | The icon | `wibox.widget.imagebox`
+`update` | Update `widget` | function
+`timer` | The widget timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+`timer_forecast` | The forecast notification timer | [`gears.timer`](https://awesomewm.org/doc/api/classes/gears.timer.html)
+
+## Functions
+
+You can attach the forecast notification to any widget like this:
+
+```lua
+myweather.attach(obj)
+```
+
+Hovering over ``obj`` will display the notification.
+
+## Key bindings
+
+You can create a key binding for the weather pop-up like this:
+
+```lua
+awful.key( { "Mod1" }, "w", function () myweather.show(5) end )
+```
+
+Where the ``show`` argument is an integer defining timeout seconds.
diff --git a/awesome/rc.lua.template b/awesome/rc.lua.template
new file mode 100644
index 0000000..c7d6583
--- /dev/null
+++ b/awesome/rc.lua.template
@@ -0,0 +1,814 @@
+--[[
+
+ Awesome WM configuration template
+ github.com/lcpz
+
+--]]
+
+-- {{{ Required libraries
+
+-- If LuaRocks is installed, make sure that packages installed through it are
+-- found (e.g. lgi). If LuaRocks is not installed, do nothing.
+pcall(require, "luarocks.loader")
+
+local gears = require("gears")
+local awful = require("awful")
+ require("awful.autofocus")
+local wibox = require("wibox")
+local beautiful = require("beautiful")
+local naughty = require("naughty")
+local lain = require("lain")
+--local menubar = require("menubar")
+local freedesktop = require("freedesktop")
+local hotkeys_popup = require("awful.hotkeys_popup")
+ require("awful.hotkeys_popup.keys")
+local mytable = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+-- }}}
+
+-- {{{ 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
+ local in_error = false
+
+ awesome.connect_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 = tostring(err)
+ }
+
+ in_error = false
+ end)
+end
+
+-- }}}
+
+-- {{{ Autostart windowless processes
+
+-- This function will run once every time Awesome is started
+local function run_once(cmd_arr)
+ for _, cmd in ipairs(cmd_arr) do
+ awful.spawn.with_shell(string.format("pgrep -u $USER -fx '%s' > /dev/null || (%s)", cmd, cmd))
+ end
+end
+
+run_once({ "urxvtd", "unclutter -root" }) -- comma-separated entries
+
+-- This function implements the XDG autostart specification
+--[[
+awful.spawn.with_shell(
+ 'if (xrdb -query | grep -q "^awesome\\.started:\\s*true$"); then exit; fi;' ..
+ 'xrdb -merge <<< "awesome.started:true";' ..
+ -- list each of your autostart commands, followed by ; inside single quotes, followed by ..
+ 'dex --environment Awesome --autostart --search-paths "$XDG_CONFIG_DIRS/autostart:$XDG_CONFIG_HOME/autostart"' -- https://github.com/jceb/dex
+)
+--]]
+
+-- }}}
+
+-- {{{ Variable definitions
+
+local themes = {
+ "blackburn", -- 1
+ "copland", -- 2
+ "dremora", -- 3
+ "holo", -- 4
+ "multicolor", -- 5
+ "powerarrow", -- 6
+ "powerarrow-dark", -- 7
+ "rainbow", -- 8
+ "steamburn", -- 9
+ "vertex" -- 10
+}
+
+local chosen_theme = themes[5]
+local modkey = "Mod4"
+local altkey = "Mod1"
+local terminal = "urxvtc"
+local vi_focus = false -- vi-like client focus https://github.com/lcpz/awesome-copycats/issues/275
+local cycle_prev = true -- cycle with only the previously focused client or all https://github.com/lcpz/awesome-copycats/issues/274
+local editor = os.getenv("EDITOR") or "nvim"
+local browser = "librewolf"
+
+awful.util.terminal = terminal
+awful.util.tagnames = { "1", "2", "3", "4", "5" }
+awful.layout.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,
+ --awful.layout.suit.corner.nw,
+ --awful.layout.suit.corner.ne,
+ --awful.layout.suit.corner.sw,
+ --awful.layout.suit.corner.se,
+ --lain.layout.cascade,
+ --lain.layout.cascade.tile,
+ --lain.layout.centerwork,
+ --lain.layout.centerwork.horizontal,
+ --lain.layout.termfair,
+ --lain.layout.termfair.center
+}
+
+lain.layout.termfair.nmaster = 3
+lain.layout.termfair.ncol = 1
+lain.layout.termfair.center.nmaster = 3
+lain.layout.termfair.center.ncol = 1
+lain.layout.cascade.tile.offset_x = 2
+lain.layout.cascade.tile.offset_y = 32
+lain.layout.cascade.tile.extra_padding = 5
+lain.layout.cascade.tile.nmaster = 5
+lain.layout.cascade.tile.ncol = 2
+
+awful.util.taglist_buttons = mytable.join(
+ awful.button({ }, 1, function(t) t:view_only() end),
+ awful.button({ modkey }, 1, function(t)
+ if client.focus then client.focus:move_to_tag(t) end
+ end),
+ awful.button({ }, 3, awful.tag.viewtoggle),
+ awful.button({ modkey }, 3, function(t)
+ if client.focus then client.focus:toggle_tag(t) end
+ end),
+ awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
+ awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
+)
+
+awful.util.tasklist_buttons = mytable.join(
+ awful.button({ }, 1, function(c)
+ if c == client.focus then
+ c.minimized = true
+ else
+ c:emit_signal("request::activate", "tasklist", { raise = true })
+ end
+ end),
+ awful.button({ }, 3, function()
+ awful.menu.client_list({ theme = { width = 250 } })
+ end),
+ awful.button({ }, 4, function() awful.client.focus.byidx(1) end),
+ awful.button({ }, 5, function() awful.client.focus.byidx(-1) end)
+)
+
+beautiful.init(string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme))
+
+-- }}}
+
+-- {{{ Menu
+
+-- Create a launcher widget and a main menu
+local myawesomemenu = {
+ { "Hotkeys", function() hotkeys_popup.show_help(nil, awful.screen.focused()) end },
+ { "Manual", string.format("%s -e man awesome", terminal) },
+ { "Edit config", string.format("%s -e %s %s", terminal, editor, awesome.conffile) },
+ { "Restart", awesome.restart },
+ { "Quit", function() awesome.quit() end },
+}
+
+awful.util.mymainmenu = freedesktop.menu.build {
+ before = {
+ { "Awesome", myawesomemenu, beautiful.awesome_icon },
+ -- other triads can be put here
+ },
+ after = {
+ { "Open terminal", terminal },
+ -- other triads can be put here
+ }
+}
+
+-- Hide the menu when the mouse leaves it
+--[[
+awful.util.mymainmenu.wibox:connect_signal("mouse::leave", function()
+ if not awful.util.mymainmenu.active_child or
+ (awful.util.mymainmenu.wibox ~= mouse.current_wibox and
+ awful.util.mymainmenu.active_child.wibox ~= mouse.current_wibox) then
+ awful.util.mymainmenu:hide()
+ else
+ awful.util.mymainmenu.active_child.wibox:connect_signal("mouse::leave",
+ function()
+ if awful.util.mymainmenu.wibox ~= mouse.current_wibox then
+ awful.util.mymainmenu:hide()
+ end
+ end)
+ end
+end)
+--]]
+
+-- Set the Menubar terminal for applications that require it
+--menubar.utils.terminal = terminal
+
+-- }}}
+
+-- {{{ Screen
+
+-- Re-set wallpaper when a screen's geometry changes (e.g. different resolution)
+screen.connect_signal("property::geometry", function(s)
+ -- Wallpaper
+ if beautiful.wallpaper then
+ local wallpaper = beautiful.wallpaper
+ -- If wallpaper is a function, call it with the screen
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+ end
+end)
+
+-- No borders when rearranging only 1 non-floating or maximized client
+screen.connect_signal("arrange", function (s)
+ local only_one = #s.tiled_clients == 1
+ for _, c in pairs(s.clients) do
+ if only_one and not c.floating or c.maximized or c.fullscreen then
+ c.border_width = 0
+ else
+ c.border_width = beautiful.border_width
+ end
+ end
+end)
+
+-- Create a wibox for each screen and add it
+awful.screen.connect_for_each_screen(function(s) beautiful.at_screen_connect(s) end)
+
+-- }}}
+
+-- {{{ Mouse bindings
+
+root.buttons(mytable.join(
+ awful.button({ }, 3, function () awful.util.mymainmenu:toggle() end),
+ awful.button({ }, 4, awful.tag.viewnext),
+ awful.button({ }, 5, awful.tag.viewprev)
+))
+
+-- }}}
+
+-- {{{ Key bindings
+
+globalkeys = mytable.join(
+ -- Destroy all notifications
+ awful.key({ "Control", }, "space", function() naughty.destroy_all_notifications() end,
+ {description = "destroy all notifications", group = "hotkeys"}),
+ -- Take a screenshot
+ -- https://github.com/lcpz/dots/blob/master/bin/screenshot
+ awful.key({ altkey }, "p", function() os.execute("screenshot") end,
+ {description = "take a screenshot", group = "hotkeys"}),
+
+ -- X screen locker
+ awful.key({ altkey, "Control" }, "l", function () os.execute(scrlocker) end,
+ {description = "lock screen", group = "hotkeys"}),
+
+ -- Show help
+ awful.key({ modkey, }, "s", hotkeys_popup.show_help,
+ {description="show help", group="awesome"}),
+
+ -- Tag browsing
+ awful.key({ modkey, }, "Left", awful.tag.viewprev,
+ {description = "view previous", group = "tag"}),
+ awful.key({ modkey, }, "Right", awful.tag.viewnext,
+ {description = "view next", group = "tag"}),
+ awful.key({ modkey, }, "Escape", awful.tag.history.restore,
+ {description = "go back", group = "tag"}),
+
+ -- Non-empty tag browsing
+ awful.key({ altkey }, "Left", function () lain.util.tag_view_nonempty(-1) end,
+ {description = "view previous nonempty", group = "tag"}),
+ awful.key({ altkey }, "Right", function () lain.util.tag_view_nonempty(1) end,
+ {description = "view previous nonempty", group = "tag"}),
+
+ -- Default client focus
+ awful.key({ altkey, }, "j",
+ function ()
+ awful.client.focus.byidx( 1)
+ end,
+ {description = "focus next by index", group = "client"}
+ ),
+ awful.key({ altkey, }, "k",
+ function ()
+ awful.client.focus.byidx(-1)
+ end,
+ {description = "focus previous by index", group = "client"}
+ ),
+
+ -- By-direction client focus
+ awful.key({ modkey }, "j",
+ function()
+ awful.client.focus.global_bydirection("down")
+ if client.focus then client.focus:raise() end
+ end,
+ {description = "focus down", group = "client"}),
+ awful.key({ modkey }, "k",
+ function()
+ awful.client.focus.global_bydirection("up")
+ if client.focus then client.focus:raise() end
+ end,
+ {description = "focus up", group = "client"}),
+ awful.key({ modkey }, "h",
+ function()
+ awful.client.focus.global_bydirection("left")
+ if client.focus then client.focus:raise() end
+ end,
+ {description = "focus left", group = "client"}),
+ awful.key({ modkey }, "l",
+ function()
+ awful.client.focus.global_bydirection("right")
+ if client.focus then client.focus:raise() end
+ end,
+ {description = "focus right", group = "client"}),
+
+ -- Menu
+ awful.key({ modkey, }, "w", function () awful.util.mymainmenu:show() end,
+ {description = "show main menu", group = "awesome"}),
+
+ -- Layout manipulation
+ awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end,
+ {description = "swap with next client by index", group = "client"}),
+ awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end,
+ {description = "swap with previous client by index", group = "client"}),
+ awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end,
+ {description = "focus the next screen", group = "screen"}),
+ awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end,
+ {description = "focus the previous screen", group = "screen"}),
+ awful.key({ modkey, }, "u", awful.client.urgent.jumpto,
+ {description = "jump to urgent client", group = "client"}),
+ awful.key({ modkey, }, "Tab",
+ function ()
+ if cycle_prev then
+ awful.client.focus.history.previous()
+ else
+ awful.client.focus.byidx(-1)
+ end
+ if client.focus then
+ client.focus:raise()
+ end
+ end,
+ {description = "cycle with previous/go back", group = "client"}),
+
+ -- Show/hide wibox
+ awful.key({ modkey }, "b", function ()
+ for s in screen do
+ s.mywibox.visible = not s.mywibox.visible
+ if s.mybottomwibox then
+ s.mybottomwibox.visible = not s.mybottomwibox.visible
+ end
+ end
+ end,
+ {description = "toggle wibox", group = "awesome"}),
+
+ -- On-the-fly useless gaps change
+ awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end,
+ {description = "increment useless gaps", group = "tag"}),
+ awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end,
+ {description = "decrement useless gaps", group = "tag"}),
+
+ -- Dynamic tagging
+ awful.key({ modkey, "Shift" }, "n", function () lain.util.add_tag() end,
+ {description = "add new tag", group = "tag"}),
+ awful.key({ modkey, "Shift" }, "r", function () lain.util.rename_tag() end,
+ {description = "rename tag", group = "tag"}),
+ awful.key({ modkey, "Shift" }, "Left", function () lain.util.move_tag(-1) end,
+ {description = "move tag to the left", group = "tag"}),
+ awful.key({ modkey, "Shift" }, "Right", function () lain.util.move_tag(1) end,
+ {description = "move tag to the right", group = "tag"}),
+ awful.key({ modkey, "Shift" }, "d", function () lain.util.delete_tag() end,
+ {description = "delete tag", group = "tag"}),
+
+ -- Standard program
+ awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end,
+ {description = "open a terminal", group = "launcher"}),
+ awful.key({ modkey, "Control" }, "r", awesome.restart,
+ {description = "reload awesome", group = "awesome"}),
+ awful.key({ modkey, "Shift" }, "q", awesome.quit,
+ {description = "quit awesome", group = "awesome"}),
+
+ awful.key({ modkey, altkey }, "l", function () awful.tag.incmwfact( 0.05) end,
+ {description = "increase master width factor", group = "layout"}),
+ awful.key({ modkey, altkey }, "h", function () awful.tag.incmwfact(-0.05) end,
+ {description = "decrease master width factor", group = "layout"}),
+ awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1, nil, true) end,
+ {description = "increase the number of master clients", group = "layout"}),
+ awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1, nil, true) end,
+ {description = "decrease the number of master clients", group = "layout"}),
+ awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1, nil, true) end,
+ {description = "increase the number of columns", group = "layout"}),
+ awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1, nil, true) end,
+ {description = "decrease the number of columns", group = "layout"}),
+ awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end,
+ {description = "select next", group = "layout"}),
+ awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end,
+ {description = "select previous", group = "layout"}),
+
+ awful.key({ modkey, "Control" }, "n", function ()
+ local c = awful.client.restore()
+ -- Focus restored client
+ if c then
+ c:emit_signal("request::activate", "key.unminimize", {raise = true})
+ end
+ end, {description = "restore minimized", group = "client"}),
+
+ -- Dropdown application
+ awful.key({ modkey, }, "z", function () awful.screen.focused().quake:toggle() end,
+ {description = "dropdown application", group = "launcher"}),
+
+ -- Widgets popups
+ awful.key({ altkey, }, "c", function () if beautiful.cal then beautiful.cal.show(7) end end,
+ {description = "show calendar", group = "widgets"}),
+ awful.key({ altkey, }, "h", function () if beautiful.fs then beautiful.fs.show(7) end end,
+ {description = "show filesystem", group = "widgets"}),
+ awful.key({ altkey, }, "w", function () if beautiful.weather then beautiful.weather.show(7) end end,
+ {description = "show weather", group = "widgets"}),
+
+ -- Screen brightness
+ awful.key({ }, "XF86MonBrightnessUp", function () os.execute("xbacklight -inc 10") end,
+ {description = "+10%", group = "hotkeys"}),
+ awful.key({ }, "XF86MonBrightnessDown", function () os.execute("xbacklight -dec 10") end,
+ {description = "-10%", group = "hotkeys"}),
+
+ -- ALSA volume control
+ awful.key({ altkey }, "Up",
+ function ()
+ os.execute(string.format("amixer -q set %s 1%%+", beautiful.volume.channel))
+ beautiful.volume.update()
+ end,
+ {description = "volume up", group = "hotkeys"}),
+ awful.key({ altkey }, "Down",
+ function ()
+ os.execute(string.format("amixer -q set %s 1%%-", beautiful.volume.channel))
+ beautiful.volume.update()
+ end,
+ {description = "volume down", group = "hotkeys"}),
+ awful.key({ altkey }, "m",
+ function ()
+ os.execute(string.format("amixer -q set %s toggle", beautiful.volume.togglechannel or beautiful.volume.channel))
+ beautiful.volume.update()
+ end,
+ {description = "toggle mute", group = "hotkeys"}),
+ awful.key({ altkey, "Control" }, "m",
+ function ()
+ os.execute(string.format("amixer -q set %s 100%%", beautiful.volume.channel))
+ beautiful.volume.update()
+ end,
+ {description = "volume 100%", group = "hotkeys"}),
+ awful.key({ altkey, "Control" }, "0",
+ function ()
+ os.execute(string.format("amixer -q set %s 0%%", beautiful.volume.channel))
+ beautiful.volume.update()
+ end,
+ {description = "volume 0%", group = "hotkeys"}),
+
+ -- MPD control
+ awful.key({ altkey, "Control" }, "Up",
+ function ()
+ os.execute("mpc toggle")
+ beautiful.mpd.update()
+ end,
+ {description = "mpc toggle", group = "widgets"}),
+ awful.key({ altkey, "Control" }, "Down",
+ function ()
+ os.execute("mpc stop")
+ beautiful.mpd.update()
+ end,
+ {description = "mpc stop", group = "widgets"}),
+ awful.key({ altkey, "Control" }, "Left",
+ function ()
+ os.execute("mpc prev")
+ beautiful.mpd.update()
+ end,
+ {description = "mpc prev", group = "widgets"}),
+ awful.key({ altkey, "Control" }, "Right",
+ function ()
+ os.execute("mpc next")
+ beautiful.mpd.update()
+ end,
+ {description = "mpc next", group = "widgets"}),
+ awful.key({ altkey }, "0",
+ function ()
+ local common = { text = "MPD widget ", position = "top_middle", timeout = 2 }
+ if beautiful.mpd.timer.started then
+ beautiful.mpd.timer:stop()
+ common.text = common.text .. lain.util.markup.bold("OFF")
+ else
+ beautiful.mpd.timer:start()
+ common.text = common.text .. lain.util.markup.bold("ON")
+ end
+ naughty.notify(common)
+ end,
+ {description = "mpc on/off", group = "widgets"}),
+
+ -- Copy primary to clipboard (terminals to gtk)
+ awful.key({ modkey }, "c", function () awful.spawn.with_shell("xsel | xsel -i -b") end,
+ {description = "copy terminal to gtk", group = "hotkeys"}),
+ -- Copy clipboard to primary (gtk to terminals)
+ awful.key({ modkey }, "v", function () awful.spawn.with_shell("xsel -b | xsel") end,
+ {description = "copy gtk to terminal", group = "hotkeys"}),
+
+ -- User programs
+ awful.key({ modkey }, "q", function () awful.spawn(browser) end,
+ {description = "run browser", group = "launcher"}),
+
+ -- Default
+ --[[ Menubar
+ awful.key({ modkey }, "p", function() menubar.show() end,
+ {description = "show the menubar", group = "launcher"}),
+ --]]
+ --[[ dmenu
+ awful.key({ modkey }, "x", function ()
+ os.execute(string.format("dmenu_run -i -fn 'Monospace' -nb '%s' -nf '%s' -sb '%s' -sf '%s'",
+ beautiful.bg_normal, beautiful.fg_normal, beautiful.bg_focus, beautiful.fg_focus))
+ end,
+ {description = "show dmenu", group = "launcher"}),
+ --]]
+ -- alternatively use rofi, a dmenu-like application with more features
+ -- check https://github.com/DaveDavenport/rofi for more details
+ --[[ rofi
+ awful.key({ modkey }, "x", function ()
+ os.execute(string.format("rofi -show %s -theme %s",
+ 'run', 'dmenu'))
+ end,
+ {description = "show rofi", group = "launcher"}),
+ --]]
+ -- Prompt
+ awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end,
+ {description = "run prompt", group = "launcher"}),
+
+ awful.key({ modkey }, "x",
+ function ()
+ awful.prompt.run {
+ prompt = "Run Lua code: ",
+ textbox = awful.screen.focused().mypromptbox.widget,
+ exe_callback = awful.util.eval,
+ history_path = awful.util.get_cache_dir() .. "/history_eval"
+ }
+ end,
+ {description = "lua execute prompt", group = "awesome"})
+ --]]
+)
+
+clientkeys = mytable.join(
+ awful.key({ altkey, "Shift" }, "m", lain.util.magnify_client,
+ {description = "magnify client", group = "client"}),
+ awful.key({ modkey, }, "f",
+ function (c)
+ c.fullscreen = not c.fullscreen
+ c:raise()
+ end,
+ {description = "toggle fullscreen", group = "client"}),
+ awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end,
+ {description = "close", group = "client"}),
+ awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ,
+ {description = "toggle floating", group = "client"}),
+ awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end,
+ {description = "move to master", group = "client"}),
+ awful.key({ modkey, }, "o", function (c) c:move_to_screen() end,
+ {description = "move to screen", group = "client"}),
+ awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end,
+ {description = "toggle keep on top", group = "client"}),
+ 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 ,
+ {description = "minimize", group = "client"}),
+ awful.key({ modkey, }, "m",
+ function (c)
+ c.maximized = not c.maximized
+ c:raise()
+ end ,
+ {description = "(un)maximize", group = "client"}),
+ awful.key({ modkey, "Control" }, "m",
+ function (c)
+ c.maximized_vertical = not c.maximized_vertical
+ c:raise()
+ end ,
+ {description = "(un)maximize vertically", group = "client"}),
+ awful.key({ modkey, "Shift" }, "m",
+ function (c)
+ c.maximized_horizontal = not c.maximized_horizontal
+ c:raise()
+ end ,
+ {description = "(un)maximize horizontally", group = "client"})
+)
+
+-- Bind all key numbers to tags.
+-- Be careful: we use keycodes to make it work on any keyboard layout.
+-- This should map on the top row of your keyboard, usually 1 to 9.
+for i = 1, 9 do
+ globalkeys = mytable.join(globalkeys,
+ -- View tag only.
+ awful.key({ modkey }, "#" .. i + 9,
+ function ()
+ local screen = awful.screen.focused()
+ local tag = screen.tags[i]
+ if tag then
+ tag:view_only()
+ end
+ end,
+ {description = "view tag #"..i, group = "tag"}),
+ -- Toggle tag display.
+ awful.key({ modkey, "Control" }, "#" .. i + 9,
+ function ()
+ local screen = awful.screen.focused()
+ local tag = screen.tags[i]
+ if tag then
+ awful.tag.viewtoggle(tag)
+ end
+ end,
+ {description = "toggle tag #" .. i, group = "tag"}),
+ -- Move client to tag.
+ awful.key({ modkey, "Shift" }, "#" .. i + 9,
+ function ()
+ if client.focus then
+ local tag = client.focus.screen.tags[i]
+ if tag then
+ client.focus:move_to_tag(tag)
+ end
+ end
+ end,
+ {description = "move focused client to tag #"..i, group = "tag"}),
+ -- Toggle tag on focused client.
+ awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
+ function ()
+ if client.focus then
+ local tag = client.focus.screen.tags[i]
+ if tag then
+ client.focus:toggle_tag(tag)
+ end
+ end
+ end,
+ {description = "toggle focused client on tag #" .. i, group = "tag"})
+ )
+end
+
+clientbuttons = mytable.join(
+ awful.button({ }, 1, function (c)
+ c:emit_signal("request::activate", "mouse_click", {raise = true})
+ end),
+ awful.button({ modkey }, 1, function (c)
+ c:emit_signal("request::activate", "mouse_click", {raise = true})
+ awful.mouse.client.move(c)
+ end),
+ awful.button({ modkey }, 3, function (c)
+ c:emit_signal("request::activate", "mouse_click", {raise = true})
+ awful.mouse.client.resize(c)
+ end)
+)
+
+-- Set keys
+root.keys(globalkeys)
+
+-- }}}
+
+-- {{{ Rules
+
+-- Rules to apply to new clients (through the "manage" signal).
+awful.rules.rules = {
+ -- All clients will match this rule.
+ { rule = { },
+ properties = { border_width = beautiful.border_width,
+ border_color = beautiful.border_normal,
+ callback = awful.client.setslave,
+ focus = awful.client.focus.filter,
+ raise = true,
+ keys = clientkeys,
+ buttons = clientbuttons,
+ screen = awful.screen.preferred,
+ placement = awful.placement.no_overlap+awful.placement.no_offscreen,
+ size_hints_honor = false
+ }
+ },
+
+ -- Floating clients.
+ { rule_any = {
+ instance = {
+ "DTA", -- Firefox addon DownThemAll.
+ "copyq", -- Includes session name in class.
+ "pinentry",
+ },
+ class = {
+ "Arandr",
+ "Blueman-manager",
+ "Gpick",
+ "Kruler",
+ "MessageWin", -- kalarm.
+ "Sxiv",
+ "Tor Browser", -- Needs a fixed window size to avoid fingerprinting by screen size.
+ "Wpa_gui",
+ "veromix",
+ "xtightvncviewer"},
+
+ -- Note that the name property shown in xprop might be set slightly after creation of the client
+ -- and the name shown there might not match defined rules here.
+ name = {
+ "Event Tester", -- xev.
+ },
+ role = {
+ "AlarmWindow", -- Thunderbird's calendar.
+ "ConfigManager", -- Thunderbird's about:config.
+ "pop-up", -- e.g. Google Chrome's (detached) Developer Tools.
+ }
+ }, properties = { floating = true }},
+
+ -- Add titlebars to normal clients and dialogs
+ { rule_any = {type = { "normal", "dialog" }
+ }, properties = { titlebars_enabled = true }
+ },
+
+ -- Set Firefox to always map on the tag named "2" on screen 1.
+ -- { rule = { class = "Firefox" },
+ -- properties = { screen = 1, tag = "2" } },
+}
+
+-- }}}
+
+-- {{{ Signals
+
+-- Signal function to execute when a new client appears.
+client.connect_signal("manage", function (c)
+ -- Set the windows at the slave,
+ -- i.e. put it at the end of others instead of setting it master.
+ -- if not awesome.startup then awful.client.setslave(c) end
+
+ if awesome.startup
+ and not c.size_hints.user_position
+ and not c.size_hints.program_position then
+ -- Prevent clients from being unreachable after screen count changes.
+ awful.placement.no_offscreen(c)
+ end
+end)
+
+-- Add a titlebar if titlebars_enabled is set to true in the rules.
+client.connect_signal("request::titlebars", function(c)
+ -- Custom
+ if beautiful.titlebar_fun then
+ beautiful.titlebar_fun(c)
+ return
+ end
+
+ -- Default
+ -- buttons for the titlebar
+ local buttons = mytable.join(
+ awful.button({ }, 1, function()
+ c:emit_signal("request::activate", "titlebar", {raise = true})
+ awful.mouse.client.move(c)
+ end),
+ awful.button({ }, 3, function()
+ c:emit_signal("request::activate", "titlebar", {raise = true})
+ awful.mouse.client.resize(c)
+ end)
+ )
+
+ awful.titlebar(c, { size = 16 }) : setup {
+ { -- Left
+ awful.titlebar.widget.iconwidget(c),
+ buttons = buttons,
+ layout = wibox.layout.fixed.horizontal
+ },
+ { -- Middle
+ { -- Title
+ align = "center",
+ widget = awful.titlebar.widget.titlewidget(c)
+ },
+ buttons = buttons,
+ layout = wibox.layout.flex.horizontal
+ },
+ { -- Right
+ awful.titlebar.widget.floatingbutton (c),
+ awful.titlebar.widget.maximizedbutton(c),
+ awful.titlebar.widget.stickybutton (c),
+ awful.titlebar.widget.ontopbutton (c),
+ awful.titlebar.widget.closebutton (c),
+ layout = wibox.layout.fixed.horizontal()
+ },
+ layout = wibox.layout.align.horizontal
+ }
+end)
+
+-- Enable sloppy focus, so that focus follows mouse.
+client.connect_signal("mouse::enter", function(c)
+ c:emit_signal("request::activate", "mouse_enter", {raise = vi_focus})
+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)
+
+-- }}}
diff --git a/awesome/themes/blackburn/icons/awesome.png b/awesome/themes/blackburn/icons/awesome.png
new file mode 100755
index 0000000..947a06d
Binary files /dev/null and b/awesome/themes/blackburn/icons/awesome.png differ
diff --git a/awesome/themes/blackburn/icons/dwindle.png b/awesome/themes/blackburn/icons/dwindle.png
new file mode 100755
index 0000000..2f4b4ac
Binary files /dev/null and b/awesome/themes/blackburn/icons/dwindle.png differ
diff --git a/awesome/themes/blackburn/icons/fairh.png b/awesome/themes/blackburn/icons/fairh.png
new file mode 100755
index 0000000..b0030e7
Binary files /dev/null and b/awesome/themes/blackburn/icons/fairh.png differ
diff --git a/awesome/themes/blackburn/icons/fairv.png b/awesome/themes/blackburn/icons/fairv.png
new file mode 100755
index 0000000..2c0e157
Binary files /dev/null and b/awesome/themes/blackburn/icons/fairv.png differ
diff --git a/awesome/themes/blackburn/icons/floating.png b/awesome/themes/blackburn/icons/floating.png
new file mode 100755
index 0000000..e0bdd4b
Binary files /dev/null and b/awesome/themes/blackburn/icons/floating.png differ
diff --git a/awesome/themes/blackburn/icons/magnifier.png b/awesome/themes/blackburn/icons/magnifier.png
new file mode 100755
index 0000000..3713108
Binary files /dev/null and b/awesome/themes/blackburn/icons/magnifier.png differ
diff --git a/awesome/themes/blackburn/icons/max.png b/awesome/themes/blackburn/icons/max.png
new file mode 100755
index 0000000..8828d12
Binary files /dev/null and b/awesome/themes/blackburn/icons/max.png differ
diff --git a/awesome/themes/blackburn/icons/spiral.png b/awesome/themes/blackburn/icons/spiral.png
new file mode 100755
index 0000000..54c2c5e
Binary files /dev/null and b/awesome/themes/blackburn/icons/spiral.png differ
diff --git a/awesome/themes/blackburn/icons/square_sel.png b/awesome/themes/blackburn/icons/square_sel.png
new file mode 100755
index 0000000..6938cca
Binary files /dev/null and b/awesome/themes/blackburn/icons/square_sel.png differ
diff --git a/awesome/themes/blackburn/icons/square_unsel.png b/awesome/themes/blackburn/icons/square_unsel.png
new file mode 100755
index 0000000..dd8064d
Binary files /dev/null and b/awesome/themes/blackburn/icons/square_unsel.png differ
diff --git a/awesome/themes/blackburn/icons/submenu.png b/awesome/themes/blackburn/icons/submenu.png
new file mode 100755
index 0000000..10ca014
Binary files /dev/null and b/awesome/themes/blackburn/icons/submenu.png differ
diff --git a/awesome/themes/blackburn/icons/tile.png b/awesome/themes/blackburn/icons/tile.png
new file mode 100755
index 0000000..409141f
Binary files /dev/null and b/awesome/themes/blackburn/icons/tile.png differ
diff --git a/awesome/themes/blackburn/icons/tilebottom.png b/awesome/themes/blackburn/icons/tilebottom.png
new file mode 100755
index 0000000..de68e9c
Binary files /dev/null and b/awesome/themes/blackburn/icons/tilebottom.png differ
diff --git a/awesome/themes/blackburn/icons/tileleft.png b/awesome/themes/blackburn/icons/tileleft.png
new file mode 100755
index 0000000..c47e4ee
Binary files /dev/null and b/awesome/themes/blackburn/icons/tileleft.png differ
diff --git a/awesome/themes/blackburn/icons/tiletop.png b/awesome/themes/blackburn/icons/tiletop.png
new file mode 100755
index 0000000..c50abdf
Binary files /dev/null and b/awesome/themes/blackburn/icons/tiletop.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/close_focus.png b/awesome/themes/blackburn/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..d0bc2e8
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/close_normal.png b/awesome/themes/blackburn/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..f99db1a
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png b/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..1a0649f
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png b/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..47f19f6
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png b/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..44b8dac
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png b/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..98f7f1d
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png b/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..eab9b37
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..bce1d00
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png b/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..4f03984
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..2e56d32
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png b/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..42a9770
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..2f3a2be
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png b/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..499dfbf
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..a9a3206
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png b/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..72864ac
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..5493d8e
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png b/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..a150154
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..7e6c99b
Binary files /dev/null and b/awesome/themes/blackburn/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/blackburn/theme.lua b/awesome/themes/blackburn/theme.lua
new file mode 100644
index 0000000..8cb1134
--- /dev/null
+++ b/awesome/themes/blackburn/theme.lua
@@ -0,0 +1,278 @@
+--[[
+
+ Blackburn Awesome WM theme 3.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 10.5"
+theme.taglist_font = "Icons 10"
+theme.fg_normal = "#D7D7D7"
+theme.fg_focus = "#F6784F"
+theme.bg_normal = "#060606"
+theme.bg_focus = "#060606"
+theme.fg_urgent = "#CC9393"
+theme.bg_urgent = "#2A1F1E"
+theme.border_width = dpi(1)
+theme.border_normal = "#0E0E0E"
+theme.border_focus = "#F79372"
+theme.taglist_fg_focus = "#F6784F"
+theme.taglist_bg_focus = "#060606"
+theme.tasklist_fg_focus = "#F6784F"
+theme.tasklist_bg_focus = "#060606"
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(130)
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.awesome_icon = theme.dir .."/icons/awesome.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.layout_tile = theme.dir .. "/icons/tile.png"
+theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.dir .. "/icons/fairv.png"
+theme.layout_fairh = theme.dir .. "/icons/fairh.png"
+theme.layout_spiral = theme.dir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
+theme.layout_max = theme.dir .. "/icons/max.png"
+theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
+theme.layout_floating = theme.dir .. "/icons/floating.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = 0
+theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png"
+theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
+
+awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" }
+
+local markup = lain.util.markup
+local separators = lain.util.separators
+local gray = "#9E9C9A"
+
+-- Textclock
+local mytextclock = wibox.widget.textclock(" %H:%M ")
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 11",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Mail IMAP check
+--[[ to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ notification_preset = { fg = white }
+ settings = function()
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = "Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, mail) .. count))
+ end
+})
+--]]
+
+-- MPD
+theme.mpd = lain.widget.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
+
+ widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title .. " "))
+ end
+})
+
+-- /home fs
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" },
+ settings = function()
+ fs_header = ""
+ fs_p = ""
+
+ if fs_now["/home"].percentage >= 90 then
+ fs_header = " Hdd "
+ fs_p = fs_now["/home"].percentage
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. fs_p))
+ end
+})
+--]]
+
+-- Battery
+local bat = lain.widget.bat({
+ settings = function()
+ bat_header = " Bat "
+ bat_p = bat_now.perc .. " "
+ widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. bat_p))
+ end
+})
+
+-- ALSA volume
+theme.volume = lain.widget.alsa({
+ --togglechannel = "IEC958,3",
+ settings = function()
+ header = " Vol "
+ vlevel = volume_now.level
+
+ if volume_now.status == "off" then
+ vlevel = vlevel .. "M "
+ else
+ vlevel = vlevel .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel))
+ end
+})
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+ settings = function()
+ units = math.floor(weather_now["main"]["temp"])
+ widget:set_markup(" " .. units .. " ")
+ end
+})
+--]]
+
+-- Separators
+local first = wibox.widget.textbox(' ')
+local arrl_pre = separators.arrow_right("alpha", "#1A1A1A")
+local arrl_post = separators.arrow_right("#1A1A1A", "alpha")
+
+local barheight = dpi(18)
+local barcolor = gears.color({
+ type = "linear",
+ from = { barheight, 0 },
+ to = { barheight, barheight },
+ stops = { {0, theme.bg_focus }, {0.8, theme.border_normal}, {1, "#1A1A1A"} }
+})
+theme.titlebar_bg = barcolor
+
+theme.titlebar_bg_focus = gears.color({
+ type = "linear",
+ from = { barheight, 0 },
+ to = { barheight, barheight },
+ stops = { {0, theme.bg_normal}, {0.5, theme.border_normal}, {1, "#492417"} }
+})
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_normal = barcolor, bg_focus = barcolor })
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = barcolor })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ first,
+ s.mytaglist,
+ arrl_pre,
+ s.mylayoutbox,
+ arrl_post,
+ s.mypromptbox,
+ first,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ first,
+ theme.mpd.widget,
+ --theme.mail.widget,
+ --theme.weather.icon,
+ --theme.weather.widget,
+ --theme.fs.widget,
+ bat,
+ theme.volume.widget,
+ mytextclock,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/blackburn/wall.png b/awesome/themes/blackburn/wall.png
new file mode 100755
index 0000000..6774d91
Binary files /dev/null and b/awesome/themes/blackburn/wall.png differ
diff --git a/awesome/themes/copland/icons/ac.png b/awesome/themes/copland/icons/ac.png
new file mode 100755
index 0000000..4b00cd1
Binary files /dev/null and b/awesome/themes/copland/icons/ac.png differ
diff --git a/awesome/themes/copland/icons/awesome.png b/awesome/themes/copland/icons/awesome.png
new file mode 100755
index 0000000..b24e00d
Binary files /dev/null and b/awesome/themes/copland/icons/awesome.png differ
diff --git a/awesome/themes/copland/icons/bat.png b/awesome/themes/copland/icons/bat.png
new file mode 100755
index 0000000..4ea9b2b
Binary files /dev/null and b/awesome/themes/copland/icons/bat.png differ
diff --git a/awesome/themes/copland/icons/bat_low.png b/awesome/themes/copland/icons/bat_low.png
new file mode 100755
index 0000000..c198675
Binary files /dev/null and b/awesome/themes/copland/icons/bat_low.png differ
diff --git a/awesome/themes/copland/icons/bat_no.png b/awesome/themes/copland/icons/bat_no.png
new file mode 100755
index 0000000..5cf536f
Binary files /dev/null and b/awesome/themes/copland/icons/bat_no.png differ
diff --git a/awesome/themes/copland/icons/centerfair.png b/awesome/themes/copland/icons/centerfair.png
new file mode 100755
index 0000000..185d5e1
Binary files /dev/null and b/awesome/themes/copland/icons/centerfair.png differ
diff --git a/awesome/themes/copland/icons/centerwork.png b/awesome/themes/copland/icons/centerwork.png
new file mode 100755
index 0000000..49d5a11
Binary files /dev/null and b/awesome/themes/copland/icons/centerwork.png differ
diff --git a/awesome/themes/copland/icons/disk.png b/awesome/themes/copland/icons/disk.png
new file mode 100755
index 0000000..3ccd728
Binary files /dev/null and b/awesome/themes/copland/icons/disk.png differ
diff --git a/awesome/themes/copland/icons/dwindle.png b/awesome/themes/copland/icons/dwindle.png
new file mode 100755
index 0000000..55b61b0
Binary files /dev/null and b/awesome/themes/copland/icons/dwindle.png differ
diff --git a/awesome/themes/copland/icons/fairh.png b/awesome/themes/copland/icons/fairh.png
new file mode 100755
index 0000000..848f5a8
Binary files /dev/null and b/awesome/themes/copland/icons/fairh.png differ
diff --git a/awesome/themes/copland/icons/fairv.png b/awesome/themes/copland/icons/fairv.png
new file mode 100755
index 0000000..610eb7b
Binary files /dev/null and b/awesome/themes/copland/icons/fairv.png differ
diff --git a/awesome/themes/copland/icons/floating.png b/awesome/themes/copland/icons/floating.png
new file mode 100755
index 0000000..d8ce00a
Binary files /dev/null and b/awesome/themes/copland/icons/floating.png differ
diff --git a/awesome/themes/copland/icons/fullscreen.png b/awesome/themes/copland/icons/fullscreen.png
new file mode 100755
index 0000000..feb44d1
Binary files /dev/null and b/awesome/themes/copland/icons/fullscreen.png differ
diff --git a/awesome/themes/copland/icons/magnifier.png b/awesome/themes/copland/icons/magnifier.png
new file mode 100755
index 0000000..49616bc
Binary files /dev/null and b/awesome/themes/copland/icons/magnifier.png differ
diff --git a/awesome/themes/copland/icons/max.png b/awesome/themes/copland/icons/max.png
new file mode 100755
index 0000000..3f4bdec
Binary files /dev/null and b/awesome/themes/copland/icons/max.png differ
diff --git a/awesome/themes/copland/icons/pause.png b/awesome/themes/copland/icons/pause.png
new file mode 100755
index 0000000..381e532
Binary files /dev/null and b/awesome/themes/copland/icons/pause.png differ
diff --git a/awesome/themes/copland/icons/play.png b/awesome/themes/copland/icons/play.png
new file mode 100755
index 0000000..05ad253
Binary files /dev/null and b/awesome/themes/copland/icons/play.png differ
diff --git a/awesome/themes/copland/icons/spiral.png b/awesome/themes/copland/icons/spiral.png
new file mode 100755
index 0000000..664afb4
Binary files /dev/null and b/awesome/themes/copland/icons/spiral.png differ
diff --git a/awesome/themes/copland/icons/square_sel.png b/awesome/themes/copland/icons/square_sel.png
new file mode 100755
index 0000000..58b58f2
Binary files /dev/null and b/awesome/themes/copland/icons/square_sel.png differ
diff --git a/awesome/themes/copland/icons/square_unsel.png b/awesome/themes/copland/icons/square_unsel.png
new file mode 100755
index 0000000..40411f4
Binary files /dev/null and b/awesome/themes/copland/icons/square_unsel.png differ
diff --git a/awesome/themes/copland/icons/stop.png b/awesome/themes/copland/icons/stop.png
new file mode 100755
index 0000000..b01b75e
Binary files /dev/null and b/awesome/themes/copland/icons/stop.png differ
diff --git a/awesome/themes/copland/icons/submenu.png b/awesome/themes/copland/icons/submenu.png
new file mode 100755
index 0000000..10ed739
Binary files /dev/null and b/awesome/themes/copland/icons/submenu.png differ
diff --git a/awesome/themes/copland/icons/termfair.png b/awesome/themes/copland/icons/termfair.png
new file mode 100755
index 0000000..9cfb636
Binary files /dev/null and b/awesome/themes/copland/icons/termfair.png differ
diff --git a/awesome/themes/copland/icons/tile.png b/awesome/themes/copland/icons/tile.png
new file mode 100755
index 0000000..890e354
Binary files /dev/null and b/awesome/themes/copland/icons/tile.png differ
diff --git a/awesome/themes/copland/icons/tilebottom.png b/awesome/themes/copland/icons/tilebottom.png
new file mode 100755
index 0000000..aac4302
Binary files /dev/null and b/awesome/themes/copland/icons/tilebottom.png differ
diff --git a/awesome/themes/copland/icons/tileleft.png b/awesome/themes/copland/icons/tileleft.png
new file mode 100755
index 0000000..c87a32f
Binary files /dev/null and b/awesome/themes/copland/icons/tileleft.png differ
diff --git a/awesome/themes/copland/icons/tiletop.png b/awesome/themes/copland/icons/tiletop.png
new file mode 100755
index 0000000..89f7f8d
Binary files /dev/null and b/awesome/themes/copland/icons/tiletop.png differ
diff --git a/awesome/themes/copland/icons/titlebar/close_focus.png b/awesome/themes/copland/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..c1fa3ad
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/copland/icons/titlebar/close_normal.png b/awesome/themes/copland/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..77cd8eb
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/copland/icons/titlebar/floating_focus_active.png b/awesome/themes/copland/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..8fcf336
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png b/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..47f19f6
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/floating_normal_active.png b/awesome/themes/copland/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..df17970
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png b/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..98f7f1d
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/maximized_focus_active.png b/awesome/themes/copland/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..96e8937
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..bce1d00
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/maximized_normal_active.png b/awesome/themes/copland/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..6ce0b10
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..2e56d32
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/ontop_focus_active.png b/awesome/themes/copland/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..d206ea4
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..2f3a2be
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/ontop_normal_active.png b/awesome/themes/copland/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..9a26d34
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..a9a3206
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/sticky_focus_active.png b/awesome/themes/copland/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..7e360db
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..5493d8e
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/copland/icons/titlebar/sticky_normal_active.png b/awesome/themes/copland/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..a06138d
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..7e6c99b
Binary files /dev/null and b/awesome/themes/copland/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/copland/icons/vol.png b/awesome/themes/copland/icons/vol.png
new file mode 100755
index 0000000..847d575
Binary files /dev/null and b/awesome/themes/copland/icons/vol.png differ
diff --git a/awesome/themes/copland/icons/vol_low.png b/awesome/themes/copland/icons/vol_low.png
new file mode 100755
index 0000000..54d653e
Binary files /dev/null and b/awesome/themes/copland/icons/vol_low.png differ
diff --git a/awesome/themes/copland/icons/vol_mute.png b/awesome/themes/copland/icons/vol_mute.png
new file mode 100755
index 0000000..361412d
Binary files /dev/null and b/awesome/themes/copland/icons/vol_mute.png differ
diff --git a/awesome/themes/copland/icons/vol_no.png b/awesome/themes/copland/icons/vol_no.png
new file mode 100755
index 0000000..06d1a97
Binary files /dev/null and b/awesome/themes/copland/icons/vol_no.png differ
diff --git a/awesome/themes/copland/theme.lua b/awesome/themes/copland/theme.lua
new file mode 100644
index 0000000..46f7863
--- /dev/null
+++ b/awesome/themes/copland/theme.lua
@@ -0,0 +1,375 @@
+--[[
+
+ Copland Awesome WM theme 2.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local awesome, client, os = awesome, client, os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/copland"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 10.5"
+theme.fg_normal = "#BBBBBB"
+theme.fg_focus = "#78A4FF"
+theme.bg_normal = "#111111"
+theme.bg_focus = "#111111"
+theme.fg_urgent = "#000000"
+theme.bg_urgent = "#FFFFFF"
+theme.border_width = dpi(1)
+theme.border_normal = "#141414"
+theme.border_focus = "#93B6FF"
+theme.taglist_fg_focus = "#FFFFFF"
+theme.taglist_bg_focus = "#111111"
+theme.taglist_bg_normal = "#111111"
+theme.titlebar_bg_normal = "#191919"
+theme.titlebar_bg_focus = "#262626"
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(130)
+theme.tasklist_disable_icon = true
+theme.awesome_icon = theme.dir .."/icons/awesome.png"
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_unsel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.vol = theme.dir .. "/icons/vol.png"
+theme.vol_low = theme.dir .. "/icons/vol_low.png"
+theme.vol_no = theme.dir .. "/icons/vol_no.png"
+theme.vol_mute = theme.dir .. "/icons/vol_mute.png"
+theme.disk = theme.dir .. "/icons/disk.png"
+theme.ac = theme.dir .. "/icons/ac.png"
+theme.bat = theme.dir .. "/icons/bat.png"
+theme.bat_low = theme.dir .. "/icons/bat_low.png"
+theme.bat_no = theme.dir .. "/icons/bat_no.png"
+theme.play = theme.dir .. "/icons/play.png"
+theme.pause = theme.dir .. "/icons/pause.png"
+theme.stop = theme.dir .. "/icons/stop.png"
+theme.layout_tile = theme.dir .. "/icons/tile.png"
+theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.dir .. "/icons/fairv.png"
+theme.layout_fairh = theme.dir .. "/icons/fairh.png"
+theme.layout_spiral = theme.dir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
+theme.layout_max = theme.dir .. "/icons/max.png"
+theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
+theme.layout_floating = theme.dir .. "/icons/floating.png"
+theme.useless_gap = 0
+theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png"
+theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
+
+-- lain related
+theme.layout_centerfair = theme.dir .. "/icons/centerfair.png"
+theme.layout_termfair = theme.dir .. "/icons/termfair.png"
+theme.layout_centerwork = theme.dir .. "/icons/centerwork.png"
+
+local markup = lain.util.markup
+local blue = theme.fg_focus
+local red = "#EB8F8F"
+local green = "#8FEB8F"
+
+-- Textclock
+--os.setlocale(os.getenv("LANG")) -- to localize the clock
+local mytextclock = wibox.widget.textclock(" %H:%M ")
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 11",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Mail IMAP check
+--[[ to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = " Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup(blue, mail) .. count)
+ end
+})
+--]]
+
+-- MPD
+local mpdicon = wibox.widget.imagebox()
+theme.mpd = lain.widget.mpd({
+ settings = function()
+ if mpd_now.state == "play" then
+ title = mpd_now.title
+ artist = " " .. mpd_now.artist .. markup("#777777", " | ")
+ mpdicon:set_image(theme.play)
+ elseif mpd_now.state == "pause" then
+ title = "mpd "
+ artist = "paused" .. markup("#777777", " | ")
+ mpdicon:set_image(theme.pause)
+ else
+ title = ""
+ artist = ""
+ mpdicon._private.image = nil
+ mpdicon:emit_signal("widget::redraw_needed")
+ mpdicon:emit_signal("widget::layout_changed")
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(blue, title) .. artist))
+ end
+})
+
+-- Battery
+local baticon = wibox.widget.imagebox(theme.bat)
+local batbar = wibox.widget {
+ forced_height = dpi(1),
+ forced_width = dpi(59),
+ color = theme.fg_normal,
+ background_color = theme.bg_normal,
+ margins = 1,
+ paddings = 1,
+ ticks = true,
+ ticks_size = dpi(6),
+ widget = wibox.widget.progressbar,
+}
+local batupd = lain.widget.bat({
+ settings = function()
+ if (not bat_now.status) or bat_now.status == "N/A" or type(bat_now.perc) ~= "number" then return end
+
+ if bat_now.status == "Charging" then
+ baticon:set_image(theme.ac)
+ if bat_now.perc >= 98 then
+ batbar:set_color(green)
+ elseif bat_now.perc > 50 then
+ batbar:set_color(theme.fg_normal)
+ elseif bat_now.perc > 15 then
+ batbar:set_color(theme.fg_normal)
+ else
+ batbar:set_color(red)
+ end
+ else
+ if bat_now.perc >= 98 then
+ batbar:set_color(green)
+ elseif bat_now.perc > 50 then
+ batbar:set_color(theme.fg_normal)
+ baticon:set_image(theme.bat)
+ elseif bat_now.perc > 15 then
+ batbar:set_color(theme.fg_normal)
+ baticon:set_image(theme.bat_low)
+ else
+ batbar:set_color(red)
+ baticon:set_image(theme.bat_no)
+ end
+ end
+ batbar:set_value(bat_now.perc / 100)
+ end
+})
+local batbg = wibox.container.background(batbar, "#474747", gears.shape.rectangle)
+local batwidget = wibox.container.margin(batbg, dpi(2), dpi(7), dpi(4), dpi(4))
+
+-- /home fs
+--[[ commented because it needs Gio/Glib >= 2.54
+local fsicon = wibox.widget.imagebox(theme.disk)
+local fsbar = wibox.widget {
+ forced_height = dpi(1),
+ forced_width = dpi(59),
+ color = theme.fg_normal,
+ background_color = theme.bg_normal,
+ margins = 1,
+ paddings = 1,
+ ticks = true,
+ ticks_size = dpi(6),
+ widget = wibox.widget.progressbar,
+}
+theme.fs = lain.widget.fs {
+ notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10.5" },
+ settings = function()
+ if fs_now["/home"].percentage < 90 then
+ fsbar:set_color(theme.fg_normal)
+ else
+ fsbar:set_color("#EB8F8F")
+ end
+ fsbar:set_value(fs_now["/home"].percentage / 100)
+ end
+}
+local fsbg = wibox.container.background(fsbar, "#474747", gears.shape.rectangle)
+local fswidget = wibox.container.margin(fsbg, dpi(2), dpi(7), dpi(4), dpi(4))
+--]]
+
+-- ALSA volume bar
+local volicon = wibox.widget.imagebox(theme.vol)
+theme.volume = lain.widget.alsabar {
+ width = dpi(59), border_width = 0, ticks = true, ticks_size = dpi(6),
+ notification_preset = { font = theme.font },
+ --togglechannel = "IEC958,3",
+ settings = function()
+ if volume_now.status == "off" then
+ volicon:set_image(theme.vol_mute)
+ elseif volume_now.level == 0 then
+ volicon:set_image(theme.vol_no)
+ elseif volume_now.level <= 50 then
+ volicon:set_image(theme.vol_low)
+ else
+ volicon:set_image(theme.vol)
+ end
+ end,
+ colors = {
+ background = theme.bg_normal,
+ mute = red,
+ unmute = theme.fg_normal
+ }
+}
+theme.volume.tooltip.wibox.fg = theme.fg_focus
+theme.volume.bar:buttons(my_table.join (
+ awful.button({}, 1, function()
+ awful.spawn(string.format("%s -e alsamixer", awful.util.terminal))
+ end),
+ awful.button({}, 2, function()
+ os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 3, function()
+ os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 4, function()
+ os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 5, function()
+ os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end)
+))
+local volumebg = wibox.container.background(theme.volume.bar, "#474747", gears.shape.rectangle)
+local volumewidget = wibox.container.margin(volumebg, dpi(2), dpi(7), dpi(4), dpi(4))
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+})
+--]]
+
+-- Separators
+local first = wibox.widget.textbox(markup.font("Terminus 3", " "))
+local spr = wibox.widget.textbox(' ')
+local small_spr = wibox.widget.textbox(markup.font("Terminus 4", " "))
+local bar_spr = wibox.widget.textbox(markup.font("Terminus 3", " ") .. markup.fontfg(theme.font, "#777777", "|") .. markup.font("Terminus 5", " "))
+
+-- Eminent-like task filtering
+local orig_filter = awful.widget.taglist.filter.all
+
+-- Taglist label functions
+awful.widget.taglist.filter.all = function (t, args)
+ if t.selected or #t:clients() > 0 then
+ return orig_filter(t, args)
+ end
+end
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ small_spr,
+ s.mylayoutbox,
+ first,
+ bar_spr,
+ s.mytaglist,
+ first,
+ s.mypromptbox,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ small_spr,
+ --theme.mail.widget,
+ mpdicon,
+ theme.mpd.widget,
+ baticon,
+ batwidget,
+ bar_spr,
+ --fsicon,
+ --fswidget,
+ bar_spr,
+ volicon,
+ volumewidget,
+ bar_spr,
+ mytextclock,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/copland/wall.png b/awesome/themes/copland/wall.png
new file mode 100644
index 0000000..ea9e4cc
Binary files /dev/null and b/awesome/themes/copland/wall.png differ
diff --git a/awesome/themes/dremora/icons/awesome.png b/awesome/themes/dremora/icons/awesome.png
new file mode 100755
index 0000000..ffb105e
Binary files /dev/null and b/awesome/themes/dremora/icons/awesome.png differ
diff --git a/awesome/themes/dremora/icons/dwindle.png b/awesome/themes/dremora/icons/dwindle.png
new file mode 100755
index 0000000..04f3918
Binary files /dev/null and b/awesome/themes/dremora/icons/dwindle.png differ
diff --git a/awesome/themes/dremora/icons/fairh.png b/awesome/themes/dremora/icons/fairh.png
new file mode 100755
index 0000000..0bb6dab
Binary files /dev/null and b/awesome/themes/dremora/icons/fairh.png differ
diff --git a/awesome/themes/dremora/icons/fairv.png b/awesome/themes/dremora/icons/fairv.png
new file mode 100755
index 0000000..aff6c26
Binary files /dev/null and b/awesome/themes/dremora/icons/fairv.png differ
diff --git a/awesome/themes/dremora/icons/floating.png b/awesome/themes/dremora/icons/floating.png
new file mode 100755
index 0000000..5d021b1
Binary files /dev/null and b/awesome/themes/dremora/icons/floating.png differ
diff --git a/awesome/themes/dremora/icons/magnifier.png b/awesome/themes/dremora/icons/magnifier.png
new file mode 100755
index 0000000..dd4dec3
Binary files /dev/null and b/awesome/themes/dremora/icons/magnifier.png differ
diff --git a/awesome/themes/dremora/icons/max.png b/awesome/themes/dremora/icons/max.png
new file mode 100755
index 0000000..7334f8b
Binary files /dev/null and b/awesome/themes/dremora/icons/max.png differ
diff --git a/awesome/themes/dremora/icons/spiral.png b/awesome/themes/dremora/icons/spiral.png
new file mode 100755
index 0000000..31cbbd0
Binary files /dev/null and b/awesome/themes/dremora/icons/spiral.png differ
diff --git a/awesome/themes/dremora/icons/square_sel.png b/awesome/themes/dremora/icons/square_sel.png
new file mode 100755
index 0000000..85cc605
Binary files /dev/null and b/awesome/themes/dremora/icons/square_sel.png differ
diff --git a/awesome/themes/dremora/icons/square_unsel.png b/awesome/themes/dremora/icons/square_unsel.png
new file mode 100755
index 0000000..1c58e4b
Binary files /dev/null and b/awesome/themes/dremora/icons/square_unsel.png differ
diff --git a/awesome/themes/dremora/icons/submenu.png b/awesome/themes/dremora/icons/submenu.png
new file mode 100755
index 0000000..988ef9e
Binary files /dev/null and b/awesome/themes/dremora/icons/submenu.png differ
diff --git a/awesome/themes/dremora/icons/tile.png b/awesome/themes/dremora/icons/tile.png
new file mode 100755
index 0000000..72cbd6c
Binary files /dev/null and b/awesome/themes/dremora/icons/tile.png differ
diff --git a/awesome/themes/dremora/icons/tilebottom.png b/awesome/themes/dremora/icons/tilebottom.png
new file mode 100755
index 0000000..a927128
Binary files /dev/null and b/awesome/themes/dremora/icons/tilebottom.png differ
diff --git a/awesome/themes/dremora/icons/tileleft.png b/awesome/themes/dremora/icons/tileleft.png
new file mode 100755
index 0000000..c54d1f5
Binary files /dev/null and b/awesome/themes/dremora/icons/tileleft.png differ
diff --git a/awesome/themes/dremora/icons/tiletop.png b/awesome/themes/dremora/icons/tiletop.png
new file mode 100755
index 0000000..db74cf3
Binary files /dev/null and b/awesome/themes/dremora/icons/tiletop.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/close_focus.png b/awesome/themes/dremora/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..221bca0
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/close_normal.png b/awesome/themes/dremora/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..f923983
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/floating_focus_active.png b/awesome/themes/dremora/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..d83bd00
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png b/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..47f19f6
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/floating_normal_active.png b/awesome/themes/dremora/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..b788552
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png b/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..4adc5e9
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png b/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..2599cd5
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..bce1d00
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png b/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..a5b1d76
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..2e56d32
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png b/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..ade12fe
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..2f3a2be
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png b/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..02facc4
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..a9a3206
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png b/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..ebd45a1
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..5493d8e
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png b/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..15f0bc4
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..7e6c99b
Binary files /dev/null and b/awesome/themes/dremora/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/dremora/theme.lua b/awesome/themes/dremora/theme.lua
new file mode 100644
index 0000000..e1b946d
--- /dev/null
+++ b/awesome/themes/dremora/theme.lua
@@ -0,0 +1,256 @@
+--[[
+
+ Dremora Awesome WM theme 2.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 10.5"
+theme.taglist_font = "Icons 10"
+theme.fg_normal = "#747474"
+theme.fg_focus = "#DDDCFF"
+theme.bg_normal = "#121212"
+theme.bg_focus = "#121212"
+theme.fg_urgent = "#CC9393"
+theme.bg_urgent = "#2A1F1E"
+theme.border_width = dpi(0)
+theme.border_normal = "#121212"
+theme.border_focus = "#292929"
+theme.titlebar_bg_focus = "#292929"
+theme.taglist_fg_focus = "#dddcff"
+theme.taglist_bg_focus = "#121212"
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(130)
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.awesome_icon = theme.dir .."/icons/awesome.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.layout_tile = theme.dir .. "/icons/tile.png"
+theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.dir .. "/icons/fairv.png"
+theme.layout_fairh = theme.dir .. "/icons/fairh.png"
+theme.layout_spiral = theme.dir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
+theme.layout_max = theme.dir .. "/icons/max.png"
+theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
+theme.layout_floating = theme.dir .. "/icons/floating.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = dpi(10)
+theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png"
+theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
+
+awful.util.tagnames = { "ƀ", "Ƅ", "Ɗ", "ƈ", "ƙ" }
+
+local markup = lain.util.markup
+local separators = lain.util.separators
+local white = theme.fg_focus
+local gray = "#858585"
+
+-- Textclock
+local mytextclock = wibox.widget.textclock(markup(gray, " %a")
+.. markup(white, " %d ") .. markup(gray, "%b ") .. markup(white, "%H:%M "))
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 11",
+ fg = white,
+ bg = theme.bg_normal
+}})
+
+-- Mail IMAP check
+--[[ to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ notification_preset = { fg = white }
+ settings = function()
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = "Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count)))
+ end
+})
+--]]
+
+-- MPD
+theme.mpd = lain.widget.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
+
+ widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title)))
+ end
+})
+
+-- /home fs
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" },
+ settings = function()
+ fs_header = ""
+ fs_p = ""
+
+ if fs_now["/home"].percentage >= 90 then
+ fs_header = " Hdd "
+ fs_p = fs_now["/home"].percentage
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p)))
+ end
+})
+--]]
+
+-- Battery
+local bat = lain.widget.bat({
+ settings = function()
+ bat_header = " Bat "
+ bat_p = bat_now.perc .. " "
+ widget:set_markup(markup.font(theme.font, markup(gray, bat_header) .. markup(white, bat_p)))
+ end
+})
+
+-- ALSA volume
+theme.volume = lain.widget.alsa({
+ --togglechannel = "IEC958,3",
+ settings = function()
+ header = " Vol "
+ vlevel = volume_now.level
+
+ if volume_now.status == "off" then
+ vlevel = vlevel .. "M "
+ else
+ vlevel = vlevel .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, header) .. markup(white, vlevel)))
+ end
+})
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+ notification_preset = { fg = white }
+})
+--]]
+
+-- Separators
+local first = wibox.widget.textbox(' ')
+local arrl_pre = separators.arrow_right("alpha", "#1A1A1A")
+local arrl_post = separators.arrow_right("#1A1A1A", "alpha")
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ first,
+ s.mytaglist,
+ arrl_pre,
+ s.mylayoutbox,
+ arrl_post,
+ s.mypromptbox,
+ first,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ first,
+ theme.mpd.widget,
+ --theme.mail.widget,
+ --theme.fs.widget,
+ bat.widget,
+ theme.volume.widget,
+ mytextclock,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/dremora/wall.png b/awesome/themes/dremora/wall.png
new file mode 100755
index 0000000..4501b60
Binary files /dev/null and b/awesome/themes/dremora/wall.png differ
diff --git a/awesome/themes/holo/icons/awesome_icon.png b/awesome/themes/holo/icons/awesome_icon.png
new file mode 100755
index 0000000..ae13162
Binary files /dev/null and b/awesome/themes/holo/icons/awesome_icon.png differ
diff --git a/awesome/themes/holo/icons/awesome_icon_white.png b/awesome/themes/holo/icons/awesome_icon_white.png
new file mode 100755
index 0000000..1b0de6e
Binary files /dev/null and b/awesome/themes/holo/icons/awesome_icon_white.png differ
diff --git a/awesome/themes/holo/icons/bar.png b/awesome/themes/holo/icons/bar.png
new file mode 100755
index 0000000..767885c
Binary files /dev/null and b/awesome/themes/holo/icons/bar.png differ
diff --git a/awesome/themes/holo/icons/bottom_bar.png b/awesome/themes/holo/icons/bottom_bar.png
new file mode 100755
index 0000000..076ad3b
Binary files /dev/null and b/awesome/themes/holo/icons/bottom_bar.png differ
diff --git a/awesome/themes/holo/icons/cal.png b/awesome/themes/holo/icons/cal.png
new file mode 100755
index 0000000..1b023ec
Binary files /dev/null and b/awesome/themes/holo/icons/cal.png differ
diff --git a/awesome/themes/holo/icons/clock.png b/awesome/themes/holo/icons/clock.png
new file mode 100755
index 0000000..6b2c4e5
Binary files /dev/null and b/awesome/themes/holo/icons/clock.png differ
diff --git a/awesome/themes/holo/icons/cpu.png b/awesome/themes/holo/icons/cpu.png
new file mode 100755
index 0000000..1ce87eb
Binary files /dev/null and b/awesome/themes/holo/icons/cpu.png differ
diff --git a/awesome/themes/holo/icons/dwindle.png b/awesome/themes/holo/icons/dwindle.png
new file mode 100755
index 0000000..f68b484
Binary files /dev/null and b/awesome/themes/holo/icons/dwindle.png differ
diff --git a/awesome/themes/holo/icons/fairh.png b/awesome/themes/holo/icons/fairh.png
new file mode 100755
index 0000000..c7e5e6d
Binary files /dev/null and b/awesome/themes/holo/icons/fairh.png differ
diff --git a/awesome/themes/holo/icons/fairv.png b/awesome/themes/holo/icons/fairv.png
new file mode 100755
index 0000000..d416b9d
Binary files /dev/null and b/awesome/themes/holo/icons/fairv.png differ
diff --git a/awesome/themes/holo/icons/floating.png b/awesome/themes/holo/icons/floating.png
new file mode 100755
index 0000000..b91cd07
Binary files /dev/null and b/awesome/themes/holo/icons/floating.png differ
diff --git a/awesome/themes/holo/icons/magnifier.png b/awesome/themes/holo/icons/magnifier.png
new file mode 100755
index 0000000..e1f744e
Binary files /dev/null and b/awesome/themes/holo/icons/magnifier.png differ
diff --git a/awesome/themes/holo/icons/max.png b/awesome/themes/holo/icons/max.png
new file mode 100755
index 0000000..50d3994
Binary files /dev/null and b/awesome/themes/holo/icons/max.png differ
diff --git a/awesome/themes/holo/icons/mpd.png b/awesome/themes/holo/icons/mpd.png
new file mode 100755
index 0000000..efa8ec3
Binary files /dev/null and b/awesome/themes/holo/icons/mpd.png differ
diff --git a/awesome/themes/holo/icons/net_down.png b/awesome/themes/holo/icons/net_down.png
new file mode 100755
index 0000000..d5075a1
Binary files /dev/null and b/awesome/themes/holo/icons/net_down.png differ
diff --git a/awesome/themes/holo/icons/net_up.png b/awesome/themes/holo/icons/net_up.png
new file mode 100755
index 0000000..66dfb54
Binary files /dev/null and b/awesome/themes/holo/icons/net_up.png differ
diff --git a/awesome/themes/holo/icons/next.png b/awesome/themes/holo/icons/next.png
new file mode 100755
index 0000000..148ce90
Binary files /dev/null and b/awesome/themes/holo/icons/next.png differ
diff --git a/awesome/themes/holo/icons/pause.png b/awesome/themes/holo/icons/pause.png
new file mode 100755
index 0000000..9e9bc3f
Binary files /dev/null and b/awesome/themes/holo/icons/pause.png differ
diff --git a/awesome/themes/holo/icons/play.png b/awesome/themes/holo/icons/play.png
new file mode 100755
index 0000000..1949983
Binary files /dev/null and b/awesome/themes/holo/icons/play.png differ
diff --git a/awesome/themes/holo/icons/prev.png b/awesome/themes/holo/icons/prev.png
new file mode 100755
index 0000000..d913bba
Binary files /dev/null and b/awesome/themes/holo/icons/prev.png differ
diff --git a/awesome/themes/holo/icons/spiral.png b/awesome/themes/holo/icons/spiral.png
new file mode 100755
index 0000000..ebb7bb3
Binary files /dev/null and b/awesome/themes/holo/icons/spiral.png differ
diff --git a/awesome/themes/holo/icons/spr_bottom_right.png b/awesome/themes/holo/icons/spr_bottom_right.png
new file mode 100755
index 0000000..d702f98
Binary files /dev/null and b/awesome/themes/holo/icons/spr_bottom_right.png differ
diff --git a/awesome/themes/holo/icons/spr_left.png b/awesome/themes/holo/icons/spr_left.png
new file mode 100755
index 0000000..44822ed
Binary files /dev/null and b/awesome/themes/holo/icons/spr_left.png differ
diff --git a/awesome/themes/holo/icons/spr_right.png b/awesome/themes/holo/icons/spr_right.png
new file mode 100755
index 0000000..5cca795
Binary files /dev/null and b/awesome/themes/holo/icons/spr_right.png differ
diff --git a/awesome/themes/holo/icons/spr_small.png b/awesome/themes/holo/icons/spr_small.png
new file mode 100755
index 0000000..16492a8
Binary files /dev/null and b/awesome/themes/holo/icons/spr_small.png differ
diff --git a/awesome/themes/holo/icons/spr_very_small.png b/awesome/themes/holo/icons/spr_very_small.png
new file mode 100755
index 0000000..8b9a227
Binary files /dev/null and b/awesome/themes/holo/icons/spr_very_small.png differ
diff --git a/awesome/themes/holo/icons/square_sel.png b/awesome/themes/holo/icons/square_sel.png
new file mode 100755
index 0000000..73fb845
Binary files /dev/null and b/awesome/themes/holo/icons/square_sel.png differ
diff --git a/awesome/themes/holo/icons/square_unsel.png b/awesome/themes/holo/icons/square_unsel.png
new file mode 100755
index 0000000..07dd9f0
Binary files /dev/null and b/awesome/themes/holo/icons/square_unsel.png differ
diff --git a/awesome/themes/holo/icons/stop.png b/awesome/themes/holo/icons/stop.png
new file mode 100755
index 0000000..bfc819c
Binary files /dev/null and b/awesome/themes/holo/icons/stop.png differ
diff --git a/awesome/themes/holo/icons/tile.png b/awesome/themes/holo/icons/tile.png
new file mode 100755
index 0000000..e2e52bb
Binary files /dev/null and b/awesome/themes/holo/icons/tile.png differ
diff --git a/awesome/themes/holo/icons/tilebottom.png b/awesome/themes/holo/icons/tilebottom.png
new file mode 100755
index 0000000..439f528
Binary files /dev/null and b/awesome/themes/holo/icons/tilebottom.png differ
diff --git a/awesome/themes/holo/icons/tileleft.png b/awesome/themes/holo/icons/tileleft.png
new file mode 100755
index 0000000..827e0d1
Binary files /dev/null and b/awesome/themes/holo/icons/tileleft.png differ
diff --git a/awesome/themes/holo/icons/tiletop.png b/awesome/themes/holo/icons/tiletop.png
new file mode 100755
index 0000000..7139846
Binary files /dev/null and b/awesome/themes/holo/icons/tiletop.png differ
diff --git a/awesome/themes/holo/theme.lua b/awesome/themes/holo/theme.lua
new file mode 100644
index 0000000..e1dc654
--- /dev/null
+++ b/awesome/themes/holo/theme.lua
@@ -0,0 +1,393 @@
+--[[
+
+ Holo Awesome WM theme 3.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local string, os = string, os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.default_dir = require("awful.util").get_themes_dir() .. "default"
+theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons"
+theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png"
+theme.font = "Roboto Bold 10"
+theme.taglist_font = "Roboto Condensed Regular 8"
+theme.fg_normal = "#FFFFFF"
+theme.fg_focus = "#0099CC"
+theme.bg_focus = "#303030"
+theme.bg_normal = "#242424"
+theme.fg_urgent = "#CC9393"
+theme.bg_urgent = "#006B8E"
+theme.border_width = dpi(3)
+theme.border_normal = "#252525"
+theme.border_focus = "#0099CC"
+theme.taglist_fg_focus = "#FFFFFF"
+theme.tasklist_bg_normal = "#222222"
+theme.tasklist_fg_focus = "#4CB7DB"
+theme.menu_height = dpi(20)
+theme.menu_width = dpi(160)
+theme.menu_icon_size = dpi(32)
+theme.awesome_icon = theme.icon_dir .. "/awesome_icon_white.png"
+theme.awesome_icon_launcher = theme.icon_dir .. "/awesome_icon.png"
+theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png"
+theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png"
+theme.spr_small = theme.icon_dir .. "/spr_small.png"
+theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png"
+theme.spr_right = theme.icon_dir .. "/spr_right.png"
+theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png"
+theme.spr_left = theme.icon_dir .. "/spr_left.png"
+theme.bar = theme.icon_dir .. "/bar.png"
+theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png"
+theme.mpdl = theme.icon_dir .. "/mpd.png"
+theme.mpd_on = theme.icon_dir .. "/mpd_on.png"
+theme.prev = theme.icon_dir .. "/prev.png"
+theme.nex = theme.icon_dir .. "/next.png"
+theme.stop = theme.icon_dir .. "/stop.png"
+theme.pause = theme.icon_dir .. "/pause.png"
+theme.play = theme.icon_dir .. "/play.png"
+theme.clock = theme.icon_dir .. "/clock.png"
+theme.calendar = theme.icon_dir .. "/cal.png"
+theme.cpu = theme.icon_dir .. "/cpu.png"
+theme.net_up = theme.icon_dir .. "/net_up.png"
+theme.net_down = theme.icon_dir .. "/net_down.png"
+theme.layout_tile = theme.icon_dir .. "/tile.png"
+theme.layout_tileleft = theme.icon_dir .. "/tileleft.png"
+theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png"
+theme.layout_tiletop = theme.icon_dir .. "/tiletop.png"
+theme.layout_fairv = theme.icon_dir .. "/fairv.png"
+theme.layout_fairh = theme.icon_dir .. "/fairh.png"
+theme.layout_spiral = theme.icon_dir .. "/spiral.png"
+theme.layout_dwindle = theme.icon_dir .. "/dwindle.png"
+theme.layout_max = theme.icon_dir .. "/max.png"
+theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png"
+theme.layout_magnifier = theme.icon_dir .. "/magnifier.png"
+theme.layout_floating = theme.icon_dir .. "/floating.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = dpi(4)
+theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png"
+theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png"
+theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png"
+theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png"
+theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png"
+theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png"
+theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png"
+theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png"
+theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png"
+theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png"
+theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png"
+theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png"
+
+theme.musicplr = string.format("%s -e ncmpcpp", awful.util.terminal)
+
+local markup = lain.util.markup
+local blue = "#80CCE6"
+local space3 = markup.font("Roboto 3", " ")
+
+-- Clock
+local mytextclock = wibox.widget.textclock(markup("#FFFFFF", space3 .. "%H:%M " .. markup.font("Roboto 4", " ")))
+mytextclock.font = theme.font
+local clock_icon = wibox.widget.imagebox(theme.clock)
+local clockbg = wibox.container.background(mytextclock, theme.bg_focus, gears.shape.rectangle)
+local clockwidget = wibox.container.margin(clockbg, dpi(0), dpi(3), dpi(5), dpi(5))
+
+-- Calendar
+local mytextcalendar = wibox.widget.textclock(markup.fontfg(theme.font, "#FFFFFF", space3 .. "%d %b " .. markup.font("Roboto 5", " ")))
+local calendar_icon = wibox.widget.imagebox(theme.calendar)
+local calbg = wibox.container.background(mytextcalendar, theme.bg_focus, gears.shape.rectangle)
+local calendarwidget = wibox.container.margin(calbg, dpi(0), dpi(0), dpi(5), dpi(5))
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock, mytextcalendar },
+ notification_preset = {
+ fg = "#FFFFFF",
+ bg = theme.bg_normal,
+ position = "bottom_right",
+ font = "Monospace 10"
+ }
+})
+
+-- Mail IMAP check
+--[[ to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ mail_notification_preset.fg = "#FFFFFF"
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = "Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(blue, mail) .. markup("#FFFFFF", count)))
+ end
+})
+--]]
+
+-- MPD
+local mpd_icon = awful.widget.launcher({ image = theme.mpdl, command = theme.musicplr })
+local prev_icon = wibox.widget.imagebox(theme.prev)
+local next_icon = wibox.widget.imagebox(theme.nex)
+local stop_icon = wibox.widget.imagebox(theme.stop)
+local pause_icon = wibox.widget.imagebox(theme.pause)
+local play_pause_icon = wibox.widget.imagebox(theme.play)
+theme.mpd = lain.widget.mpd({
+ settings = function ()
+ if mpd_now.state == "play" then
+ mpd_now.artist = mpd_now.artist:upper():gsub("&.-;", string.lower)
+ mpd_now.title = mpd_now.title:upper():gsub("&.-;", string.lower)
+ widget:set_markup(markup.font("Roboto 4", " ")
+ .. markup.font(theme.taglist_font,
+ " " .. mpd_now.artist
+ .. " - " ..
+ mpd_now.title .. " ") .. markup.font("Roboto 5", " "))
+ play_pause_icon:set_image(theme.pause)
+ elseif mpd_now.state == "pause" then
+ widget:set_markup(markup.font("Roboto 4", " ") ..
+ markup.font(theme.taglist_font, " MPD PAUSED ") ..
+ markup.font("Roboto 5", " "))
+ play_pause_icon:set_image(theme.play)
+ else
+ widget:set_markup("")
+ play_pause_icon:set_image(theme.play)
+ end
+ end
+})
+local musicbg = wibox.container.background(theme.mpd.widget, theme.bg_focus, gears.shape.rectangle)
+local musicwidget = wibox.container.margin(musicbg, dpi(0), dpi(0), dpi(5), dpi(5))
+
+musicwidget:buttons(my_table.join(awful.button({ }, 1,
+function () awful.spawn(theme.musicplr) end)))
+prev_icon:buttons(my_table.join(awful.button({}, 1,
+function ()
+ os.execute("mpc prev")
+ theme.mpd.update()
+end)))
+next_icon:buttons(my_table.join(awful.button({}, 1,
+function ()
+ os.execute("mpc next")
+ theme.mpd.update()
+end)))
+stop_icon:buttons(my_table.join(awful.button({}, 1,
+function ()
+ play_pause_icon:set_image(theme.play)
+ os.execute("mpc stop")
+ theme.mpd.update()
+end)))
+play_pause_icon:buttons(my_table.join(awful.button({}, 1,
+function ()
+ os.execute("mpc toggle")
+ theme.mpd.update()
+end)))
+
+-- Battery
+local bat = lain.widget.bat({
+ settings = function()
+ bat_header = " Bat "
+ bat_p = bat_now.perc .. " "
+ if bat_now.ac_status == 1 then
+ bat_p = bat_p .. "Plugged "
+ end
+ widget:set_markup(markup.font(theme.font, markup(blue, bat_header) .. bat_p))
+ end
+})
+
+-- / fs
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { bg = theme.bg_normal, font = "Monospace 9" },
+})
+--]]
+
+-- ALSA volume bar
+theme.volume = lain.widget.alsabar({
+ notification_preset = { font = "Monospace 9"},
+ --togglechannel = "IEC958,3",
+ width = dpi(80), height = dpi(10), border_width = dpi(0),
+ colors = {
+ background = "#383838",
+ unmute = "#80CCE6",
+ mute = "#FF9F9F"
+ },
+})
+theme.volume.bar.paddings = dpi(0)
+theme.volume.bar.margins = dpi(5)
+local volumewidget = wibox.container.background(theme.volume.bar, theme.bg_focus, gears.shape.rectangle)
+volumewidget = wibox.container.margin(volumewidget, dpi(0), dpi(0), dpi(5), dpi(5))
+
+-- CPU
+local cpu_icon = wibox.widget.imagebox(theme.cpu)
+local cpu = lain.widget.cpu({
+ settings = function()
+ widget:set_markup(space3 .. markup.font(theme.font, "CPU " .. cpu_now.usage
+ .. "% ") .. markup.font("Roboto 5", " "))
+ end
+})
+local cpubg = wibox.container.background(cpu.widget, theme.bg_focus, gears.shape.rectangle)
+local cpuwidget = wibox.container.margin(cpubg, dpi(0), dpi(0), dpi(5), dpi(5))
+
+-- Net
+local netdown_icon = wibox.widget.imagebox(theme.net_down)
+local netup_icon = wibox.widget.imagebox(theme.net_up)
+local net = lain.widget.net({
+ settings = function()
+ widget:set_markup(markup.font("Roboto 1", " ") .. markup.font(theme.font, net_now.received .. " - "
+ .. net_now.sent) .. markup.font("Roboto 2", " "))
+ end
+})
+local netbg = wibox.container.background(net.widget, theme.bg_focus, gears.shape.rectangle)
+local networkwidget = wibox.container.margin(netbg, dpi(0), dpi(0), dpi(5), dpi(5))
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+ notification_preset = { font = "Monospace 9", position = "bottom_right" },
+})
+--]]
+
+-- Launcher
+local mylauncher = awful.widget.button({ image = theme.awesome_icon_launcher })
+mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end)
+
+-- Separators
+local first = wibox.widget.textbox(' ')
+local spr_small = wibox.widget.imagebox(theme.spr_small)
+local spr_very_small = wibox.widget.imagebox(theme.spr_very_small)
+local spr_right = wibox.widget.imagebox(theme.spr_right)
+local spr_bottom_right = wibox.widget.imagebox(theme.spr_bottom_right)
+local spr_left = wibox.widget.imagebox(theme.spr_left)
+local bar = wibox.widget.imagebox(theme.bar)
+local bottom_bar = wibox.widget.imagebox(theme.bottom_bar)
+
+local barcolor = gears.color({
+ type = "linear",
+ from = { dpi(32), 0 },
+ to = { dpi(32), dpi(32) },
+ stops = { {0, theme.bg_focus}, {0.25, "#505050"}, {1, theme.bg_focus} }
+})
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, { bg_focus = barcolor })
+
+ mytaglistcont = wibox.container.background(s.mytaglist, theme.bg_focus, gears.shape.rectangle)
+ s.mytag = wibox.container.margin(mytaglistcont, dpi(0), dpi(0), dpi(5), dpi(5))
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons, { bg_focus = theme.bg_focus, shape = gears.shape.rectangle, shape_border_width = 5, shape_border_color = theme.tasklist_bg_normal, align = "center" })
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(32) })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ first,
+ s.mytag,
+ spr_small,
+ s.mylayoutbox,
+ spr_small,
+ s.mypromptbox,
+ },
+ nil, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ --theme.mail.widget,
+ --bat.widget,
+ spr_right,
+ musicwidget,
+ bar,
+ prev_icon,
+ next_icon,
+ stop_icon,
+ play_pause_icon,
+ bar,
+ mpd_icon,
+ bar,
+ spr_very_small,
+ volumewidget,
+ spr_left,
+ },
+ }
+
+ -- Create the bottom wibox
+ s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = dpi(0), height = dpi(32) })
+ s.borderwibox = awful.wibar({ position = "bottom", screen = s, height = dpi(1), bg = theme.fg_focus, x = dpi(0), y = dpi(33)})
+
+ -- Add widgets to the bottom wibox
+ s.mybottomwibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ mylauncher,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ spr_bottom_right,
+ netdown_icon,
+ networkwidget,
+ netup_icon,
+ bottom_bar,
+ cpu_icon,
+ cpuwidget,
+ bottom_bar,
+ calendar_icon,
+ calendarwidget,
+ bottom_bar,
+ clock_icon,
+ clockwidget,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/holo/wall.png b/awesome/themes/holo/wall.png
new file mode 100755
index 0000000..7ec8009
Binary files /dev/null and b/awesome/themes/holo/wall.png differ
diff --git a/awesome/themes/multicolor/icons/ac.png b/awesome/themes/multicolor/icons/ac.png
new file mode 100755
index 0000000..272b832
Binary files /dev/null and b/awesome/themes/multicolor/icons/ac.png differ
diff --git a/awesome/themes/multicolor/icons/bat.png b/awesome/themes/multicolor/icons/bat.png
new file mode 100755
index 0000000..bd63927
Binary files /dev/null and b/awesome/themes/multicolor/icons/bat.png differ
diff --git a/awesome/themes/multicolor/icons/clock.png b/awesome/themes/multicolor/icons/clock.png
new file mode 100755
index 0000000..22aef71
Binary files /dev/null and b/awesome/themes/multicolor/icons/clock.png differ
diff --git a/awesome/themes/multicolor/icons/cpu.png b/awesome/themes/multicolor/icons/cpu.png
new file mode 100755
index 0000000..e3794ca
Binary files /dev/null and b/awesome/themes/multicolor/icons/cpu.png differ
diff --git a/awesome/themes/multicolor/icons/dish.png b/awesome/themes/multicolor/icons/dish.png
new file mode 100755
index 0000000..c71499b
Binary files /dev/null and b/awesome/themes/multicolor/icons/dish.png differ
diff --git a/awesome/themes/multicolor/icons/dwindle.png b/awesome/themes/multicolor/icons/dwindle.png
new file mode 100755
index 0000000..94d8382
Binary files /dev/null and b/awesome/themes/multicolor/icons/dwindle.png differ
diff --git a/awesome/themes/multicolor/icons/fairh.png b/awesome/themes/multicolor/icons/fairh.png
new file mode 100755
index 0000000..4468efc
Binary files /dev/null and b/awesome/themes/multicolor/icons/fairh.png differ
diff --git a/awesome/themes/multicolor/icons/fairv.png b/awesome/themes/multicolor/icons/fairv.png
new file mode 100755
index 0000000..7c8728e
Binary files /dev/null and b/awesome/themes/multicolor/icons/fairv.png differ
diff --git a/awesome/themes/multicolor/icons/floating.png b/awesome/themes/multicolor/icons/floating.png
new file mode 100755
index 0000000..7593a2a
Binary files /dev/null and b/awesome/themes/multicolor/icons/floating.png differ
diff --git a/awesome/themes/multicolor/icons/fs.png b/awesome/themes/multicolor/icons/fs.png
new file mode 100755
index 0000000..1c1b13e
Binary files /dev/null and b/awesome/themes/multicolor/icons/fs.png differ
diff --git a/awesome/themes/multicolor/icons/fullscreen.png b/awesome/themes/multicolor/icons/fullscreen.png
new file mode 100755
index 0000000..f63a69c
Binary files /dev/null and b/awesome/themes/multicolor/icons/fullscreen.png differ
diff --git a/awesome/themes/multicolor/icons/magnifier.png b/awesome/themes/multicolor/icons/magnifier.png
new file mode 100755
index 0000000..8819554
Binary files /dev/null and b/awesome/themes/multicolor/icons/magnifier.png differ
diff --git a/awesome/themes/multicolor/icons/mail.png b/awesome/themes/multicolor/icons/mail.png
new file mode 100755
index 0000000..25021f5
Binary files /dev/null and b/awesome/themes/multicolor/icons/mail.png differ
diff --git a/awesome/themes/multicolor/icons/max.png b/awesome/themes/multicolor/icons/max.png
new file mode 100755
index 0000000..4b6a8c3
Binary files /dev/null and b/awesome/themes/multicolor/icons/max.png differ
diff --git a/awesome/themes/multicolor/icons/mem.png b/awesome/themes/multicolor/icons/mem.png
new file mode 100755
index 0000000..d04ee11
Binary files /dev/null and b/awesome/themes/multicolor/icons/mem.png differ
diff --git a/awesome/themes/multicolor/icons/net_down.png b/awesome/themes/multicolor/icons/net_down.png
new file mode 100755
index 0000000..09433b1
Binary files /dev/null and b/awesome/themes/multicolor/icons/net_down.png differ
diff --git a/awesome/themes/multicolor/icons/net_up.png b/awesome/themes/multicolor/icons/net_up.png
new file mode 100755
index 0000000..395d014
Binary files /dev/null and b/awesome/themes/multicolor/icons/net_up.png differ
diff --git a/awesome/themes/multicolor/icons/note.png b/awesome/themes/multicolor/icons/note.png
new file mode 100755
index 0000000..2f41eb3
Binary files /dev/null and b/awesome/themes/multicolor/icons/note.png differ
diff --git a/awesome/themes/multicolor/icons/note_on.png b/awesome/themes/multicolor/icons/note_on.png
new file mode 100755
index 0000000..264d2c8
Binary files /dev/null and b/awesome/themes/multicolor/icons/note_on.png differ
diff --git a/awesome/themes/multicolor/icons/spiral.png b/awesome/themes/multicolor/icons/spiral.png
new file mode 100755
index 0000000..6a1ebf1
Binary files /dev/null and b/awesome/themes/multicolor/icons/spiral.png differ
diff --git a/awesome/themes/multicolor/icons/spkr.png b/awesome/themes/multicolor/icons/spkr.png
new file mode 100755
index 0000000..80c20b0
Binary files /dev/null and b/awesome/themes/multicolor/icons/spkr.png differ
diff --git a/awesome/themes/multicolor/icons/square_a.png b/awesome/themes/multicolor/icons/square_a.png
new file mode 100755
index 0000000..1774d95
Binary files /dev/null and b/awesome/themes/multicolor/icons/square_a.png differ
diff --git a/awesome/themes/multicolor/icons/square_b.png b/awesome/themes/multicolor/icons/square_b.png
new file mode 100755
index 0000000..b47e9f3
Binary files /dev/null and b/awesome/themes/multicolor/icons/square_b.png differ
diff --git a/awesome/themes/multicolor/icons/submenu.png b/awesome/themes/multicolor/icons/submenu.png
new file mode 100755
index 0000000..7c81cab
Binary files /dev/null and b/awesome/themes/multicolor/icons/submenu.png differ
diff --git a/awesome/themes/multicolor/icons/temp.png b/awesome/themes/multicolor/icons/temp.png
new file mode 100755
index 0000000..6c8f8bd
Binary files /dev/null and b/awesome/themes/multicolor/icons/temp.png differ
diff --git a/awesome/themes/multicolor/icons/tile.png b/awesome/themes/multicolor/icons/tile.png
new file mode 100755
index 0000000..64103d9
Binary files /dev/null and b/awesome/themes/multicolor/icons/tile.png differ
diff --git a/awesome/themes/multicolor/icons/tilebottom.png b/awesome/themes/multicolor/icons/tilebottom.png
new file mode 100755
index 0000000..9363636
Binary files /dev/null and b/awesome/themes/multicolor/icons/tilebottom.png differ
diff --git a/awesome/themes/multicolor/icons/tileleft.png b/awesome/themes/multicolor/icons/tileleft.png
new file mode 100755
index 0000000..9331898
Binary files /dev/null and b/awesome/themes/multicolor/icons/tileleft.png differ
diff --git a/awesome/themes/multicolor/icons/tiletop.png b/awesome/themes/multicolor/icons/tiletop.png
new file mode 100755
index 0000000..1cef886
Binary files /dev/null and b/awesome/themes/multicolor/icons/tiletop.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/close_focus.png b/awesome/themes/multicolor/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..cd297db
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/close_normal.png b/awesome/themes/multicolor/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..5448ed8
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png b/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..ae5a8e2
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png b/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..c54eb0c
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png b/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..62342d1
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png b/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..e2bbdfa
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png b/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..957298b
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..1187229
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png b/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..a705f81
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..4c1ab1f
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/minimize_focus.png b/awesome/themes/multicolor/icons/titlebar/minimize_focus.png
new file mode 100755
index 0000000..bbe8cff
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/minimize_focus.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/minimize_normal.png b/awesome/themes/multicolor/icons/titlebar/minimize_normal.png
new file mode 100755
index 0000000..36621d0
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/minimize_normal.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png b/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..25a3080
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..d3c077a
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png b/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..117a203
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..d3a10c8
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png b/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..147ce6a
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..396628a
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png b/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..bdb5595
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..a96b9b1
Binary files /dev/null and b/awesome/themes/multicolor/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/multicolor/theme.lua b/awesome/themes/multicolor/theme.lua
new file mode 100644
index 0000000..efe9f9e
--- /dev/null
+++ b/awesome/themes/multicolor/theme.lua
@@ -0,0 +1,350 @@
+--[[
+
+ Multicolor Awesome WM theme 2.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor"
+theme.wallpaper = theme.confdir .. "/wall.png"
+theme.font = "Terminus 8"
+theme.menu_bg_normal = "#000000"
+theme.menu_bg_focus = "#000000"
+theme.bg_normal = "#000000"
+theme.bg_focus = "#000000"
+theme.bg_urgent = "#000000"
+theme.fg_normal = "#aaaaaa"
+theme.fg_focus = "#ff8c00"
+theme.fg_urgent = "#af1d18"
+theme.fg_minimize = "#ffffff"
+theme.border_width = dpi(1)
+theme.border_normal = "#1c2022"
+theme.border_focus = "#606060"
+theme.border_marked = "#3ca4d8"
+theme.menu_border_width = 0
+theme.menu_width = dpi(130)
+theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png"
+theme.menu_fg_normal = "#aaaaaa"
+theme.menu_fg_focus = "#ff8c00"
+theme.menu_bg_normal = "#050505dd"
+theme.menu_bg_focus = "#050505dd"
+theme.widget_temp = theme.confdir .. "/icons/temp.png"
+theme.widget_uptime = theme.confdir .. "/icons/ac.png"
+theme.widget_cpu = theme.confdir .. "/icons/cpu.png"
+theme.widget_weather = theme.confdir .. "/icons/dish.png"
+theme.widget_fs = theme.confdir .. "/icons/fs.png"
+theme.widget_mem = theme.confdir .. "/icons/mem.png"
+theme.widget_note = theme.confdir .. "/icons/note.png"
+theme.widget_note_on = theme.confdir .. "/icons/note_on.png"
+theme.widget_netdown = theme.confdir .. "/icons/net_down.png"
+theme.widget_netup = theme.confdir .. "/icons/net_up.png"
+theme.widget_mail = theme.confdir .. "/icons/mail.png"
+theme.widget_batt = theme.confdir .. "/icons/bat.png"
+theme.widget_clock = theme.confdir .. "/icons/clock.png"
+theme.widget_vol = theme.confdir .. "/icons/spkr.png"
+theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png"
+theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = 0
+theme.layout_tile = theme.confdir .. "/icons/tile.png"
+theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png"
+theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.confdir .. "/icons/fairv.png"
+theme.layout_fairh = theme.confdir .. "/icons/fairh.png"
+theme.layout_spiral = theme.confdir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png"
+theme.layout_max = theme.confdir .. "/icons/max.png"
+theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.confdir .. "/icons/magnifier.png"
+theme.layout_floating = theme.confdir .. "/icons/floating.png"
+theme.titlebar_close_button_normal = theme.confdir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_close_button_focus = theme.confdir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_minimize_button_normal = theme.confdir .. "/icons/titlebar/minimize_normal.png"
+theme.titlebar_minimize_button_focus = theme.confdir .. "/icons/titlebar/minimize_focus.png"
+theme.titlebar_ontop_button_normal_inactive = theme.confdir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_ontop_button_focus_inactive = theme.confdir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_active = theme.confdir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_active = theme.confdir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_sticky_button_normal_inactive = theme.confdir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_sticky_button_focus_inactive = theme.confdir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_active = theme.confdir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_active = theme.confdir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_floating_button_normal_inactive = theme.confdir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_floating_button_focus_inactive = theme.confdir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_active = theme.confdir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_active = theme.confdir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_maximized_button_normal_inactive = theme.confdir .. "/icons/titlebar/maximized_normal_inactive.png"
+theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png"
+
+local markup = lain.util.markup
+
+-- Textclock
+os.setlocale(os.getenv("LANG")) -- to localize the clock
+local clockicon = wibox.widget.imagebox(theme.widget_clock)
+local mytextclock = wibox.widget.textclock(markup("#7788af", "%A %d %B ") .. markup("#ab7367", ">") .. markup("#de5e1e", " %H:%M "))
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 10",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Weather
+--[[ to be set before use
+local weathericon = wibox.widget.imagebox(theme.widget_weather)
+theme.weather = lain.widget.weather({
+ city_id = 2643743, -- placeholder (London)
+ notification_preset = { font = "Terminus 10", fg = theme.fg_normal },
+ weather_na_markup = markup.fontfg(theme.font, "#eca4c4", "N/A "),
+ settings = function()
+ descr = weather_now["weather"][1]["description"]:lower()
+ units = math.floor(weather_now["main"]["temp"])
+ widget:set_markup(markup.fontfg(theme.font, "#eca4c4", descr .. " @ " .. units .. "°C "))
+ end
+})
+--]]
+
+-- / fs
+--[[ commented because it needs Gio/Glib >= 2.54
+local fsicon = wibox.widget.imagebox(theme.widget_fs)
+theme.fs = lain.widget.fs({
+ notification_preset = { font = "Terminus 10", fg = theme.fg_normal },
+ settings = function()
+ widget:set_markup(markup.fontfg(theme.font, "#80d9d8", string.format("%.1f", fs_now["/"].used) .. "% "))
+ end
+})
+--]]
+
+-- Mail IMAP check
+--[[ to be set before use
+local mailicon = wibox.widget.imagebox()
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ if mailcount > 0 then
+ mailicon:set_image(theme.widget_mail)
+ widget:set_markup(markup.fontfg(theme.font, "#cccccc", mailcount .. " "))
+ else
+ widget:set_text("")
+ --mailicon:set_image() -- not working in 4.0
+ mailicon._private.image = nil
+ mailicon:emit_signal("widget::redraw_needed")
+ mailicon:emit_signal("widget::layout_changed")
+ end
+ end
+})
+--]]
+
+-- CPU
+local cpuicon = wibox.widget.imagebox(theme.widget_cpu)
+local cpu = lain.widget.cpu({
+ settings = function()
+ widget:set_markup(markup.fontfg(theme.font, "#e33a6e", cpu_now.usage .. "% "))
+ end
+})
+
+-- Coretemp
+local tempicon = wibox.widget.imagebox(theme.widget_temp)
+local temp = lain.widget.temp({
+ settings = function()
+ widget:set_markup(markup.fontfg(theme.font, "#f1af5f", coretemp_now .. "°C "))
+ end
+})
+
+-- Battery
+local baticon = wibox.widget.imagebox(theme.widget_batt)
+local bat = lain.widget.bat({
+ settings = function()
+ local perc = bat_now.perc ~= "N/A" and bat_now.perc .. "%" or bat_now.perc
+
+ if bat_now.ac_status == 1 then
+ perc = perc .. " plug"
+ end
+
+ widget:set_markup(markup.fontfg(theme.font, theme.fg_normal, perc .. " "))
+ end
+})
+
+-- ALSA volume
+local volicon = wibox.widget.imagebox(theme.widget_vol)
+theme.volume = lain.widget.alsa({
+ settings = function()
+ if volume_now.status == "off" then
+ volume_now.level = volume_now.level .. "M"
+ end
+
+ widget:set_markup(markup.fontfg(theme.font, "#7493d2", volume_now.level .. "% "))
+ end
+})
+
+-- Net
+local netdownicon = wibox.widget.imagebox(theme.widget_netdown)
+local netdowninfo = wibox.widget.textbox()
+local netupicon = wibox.widget.imagebox(theme.widget_netup)
+local netupinfo = lain.widget.net({
+ settings = function()
+ --[[ uncomment if using the weather widget
+ if iface ~= "network off" and
+ string.match(theme.weather.widget.text, "N/A")
+ then
+ theme.weather.update()
+ end
+ --]]
+
+ widget:set_markup(markup.fontfg(theme.font, "#e54c62", net_now.sent .. " "))
+ netdowninfo:set_markup(markup.fontfg(theme.font, "#87af5f", net_now.received .. " "))
+ end
+})
+
+-- MEM
+local memicon = wibox.widget.imagebox(theme.widget_mem)
+local memory = lain.widget.mem({
+ settings = function()
+ widget:set_markup(markup.fontfg(theme.font, "#e0da37", mem_now.used .. "M "))
+ end
+})
+
+-- MPD
+local mpdicon = wibox.widget.imagebox()
+theme.mpd = lain.widget.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(theme.widget_note_on)
+ elseif mpd_now.state == "pause" then
+ artist = "mpd "
+ title = "paused "
+ else
+ artist = ""
+ title = ""
+ --mpdicon:set_image() -- not working in 4.0
+ mpdicon._private.image = nil
+ mpdicon:emit_signal("widget::redraw_needed")
+ mpdicon:emit_signal("widget::layout_changed")
+ end
+ widget:set_markup(markup.fontfg(theme.font, "#e54c62", artist) .. markup.fontfg(theme.font, "#b2b2b2", title))
+ end
+})
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(19), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ --s.mylayoutbox,
+ s.mytaglist,
+ s.mypromptbox,
+ mpdicon,
+ theme.mpd.widget,
+ },
+ --s.mytasklist, -- Middle widget
+ nil,
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ --mailicon,
+ --theme.mail.widget,
+ netdownicon,
+ netdowninfo,
+ netupicon,
+ netupinfo.widget,
+ volicon,
+ theme.volume.widget,
+ memicon,
+ memory.widget,
+ cpuicon,
+ cpu.widget,
+ --fsicon,
+ --theme.fs.widget,
+ --weathericon,
+ --theme.weather.widget,
+ tempicon,
+ temp.widget,
+ baticon,
+ bat.widget,
+ clockicon,
+ mytextclock,
+ },
+ }
+
+ -- Create the bottom wibox
+ s.mybottomwibox = awful.wibar({ position = "bottom", screen = s, border_width = 0, height = dpi(20), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the bottom wibox
+ s.mybottomwibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ s.mylayoutbox,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/multicolor/wall.png b/awesome/themes/multicolor/wall.png
new file mode 100755
index 0000000..a3188d0
Binary files /dev/null and b/awesome/themes/multicolor/wall.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/ac.png b/awesome/themes/powerarrow-dark/icons/ac.png
new file mode 100755
index 0000000..96efcb4
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/ac.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/battery.png b/awesome/themes/powerarrow-dark/icons/battery.png
new file mode 100755
index 0000000..8c85596
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/battery.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/battery_empty.png b/awesome/themes/powerarrow-dark/icons/battery_empty.png
new file mode 100755
index 0000000..00821c9
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/battery_empty.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/battery_low.png b/awesome/themes/powerarrow-dark/icons/battery_low.png
new file mode 100755
index 0000000..29f3fc5
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/battery_low.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/centerfair.png b/awesome/themes/powerarrow-dark/icons/centerfair.png
new file mode 100755
index 0000000..c4f64b0
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/centerfair.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/centerwork.png b/awesome/themes/powerarrow-dark/icons/centerwork.png
new file mode 100755
index 0000000..9071516
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/centerwork.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/centerworkh.png b/awesome/themes/powerarrow-dark/icons/centerworkh.png
new file mode 100755
index 0000000..b1d1379
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/centerworkh.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/cpu.png b/awesome/themes/powerarrow-dark/icons/cpu.png
new file mode 100755
index 0000000..35af1c3
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/cpu.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/dwindle.png b/awesome/themes/powerarrow-dark/icons/dwindle.png
new file mode 100755
index 0000000..649ea99
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/dwindle.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/fairh.png b/awesome/themes/powerarrow-dark/icons/fairh.png
new file mode 100755
index 0000000..62d3d99
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/fairh.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/fairv.png b/awesome/themes/powerarrow-dark/icons/fairv.png
new file mode 100755
index 0000000..131dd0f
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/fairv.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/floating.png b/awesome/themes/powerarrow-dark/icons/floating.png
new file mode 100755
index 0000000..d25c47b
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/floating.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/hdd.png b/awesome/themes/powerarrow-dark/icons/hdd.png
new file mode 100755
index 0000000..0fb6833
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/hdd.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/magnifier.png b/awesome/themes/powerarrow-dark/icons/magnifier.png
new file mode 100755
index 0000000..60d3e0d
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/magnifier.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/mail.png b/awesome/themes/powerarrow-dark/icons/mail.png
new file mode 100755
index 0000000..474e602
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/mail.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/mail_on.png b/awesome/themes/powerarrow-dark/icons/mail_on.png
new file mode 100755
index 0000000..19106d7
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/mail_on.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/max.png b/awesome/themes/powerarrow-dark/icons/max.png
new file mode 100755
index 0000000..5b0a5b7
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/max.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/mem.png b/awesome/themes/powerarrow-dark/icons/mem.png
new file mode 100755
index 0000000..7860a1a
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/mem.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/net.png b/awesome/themes/powerarrow-dark/icons/net.png
new file mode 100755
index 0000000..bc42fdc
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/net.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/net_wired.png b/awesome/themes/powerarrow-dark/icons/net_wired.png
new file mode 100755
index 0000000..e8cc2bd
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/net_wired.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/note.png b/awesome/themes/powerarrow-dark/icons/note.png
new file mode 100755
index 0000000..baa29c3
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/note.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/note_on.png b/awesome/themes/powerarrow-dark/icons/note_on.png
new file mode 100755
index 0000000..1a7ab94
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/note_on.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/scissors.png b/awesome/themes/powerarrow-dark/icons/scissors.png
new file mode 100755
index 0000000..f8c700d
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/scissors.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/spiral.png b/awesome/themes/powerarrow-dark/icons/spiral.png
new file mode 100755
index 0000000..d9ee0f6
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/spiral.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/square_sel.png b/awesome/themes/powerarrow-dark/icons/square_sel.png
new file mode 100755
index 0000000..1102a9f
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/square_sel.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/square_unsel.png b/awesome/themes/powerarrow-dark/icons/square_unsel.png
new file mode 100755
index 0000000..7386b85
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/square_unsel.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/submenu.png b/awesome/themes/powerarrow-dark/icons/submenu.png
new file mode 100755
index 0000000..b55ebce
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/submenu.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/task.png b/awesome/themes/powerarrow-dark/icons/task.png
new file mode 100755
index 0000000..9701b68
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/task.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/temp.png b/awesome/themes/powerarrow-dark/icons/temp.png
new file mode 100755
index 0000000..6793a9f
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/temp.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/termfair.png b/awesome/themes/powerarrow-dark/icons/termfair.png
new file mode 100755
index 0000000..3e06023
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/termfair.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/tile.png b/awesome/themes/powerarrow-dark/icons/tile.png
new file mode 100755
index 0000000..922c05c
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/tile.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/tilebottom.png b/awesome/themes/powerarrow-dark/icons/tilebottom.png
new file mode 100755
index 0000000..6ec9cb8
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/tilebottom.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/tileleft.png b/awesome/themes/powerarrow-dark/icons/tileleft.png
new file mode 100755
index 0000000..8e3d2d6
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/tileleft.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/tiletop.png b/awesome/themes/powerarrow-dark/icons/tiletop.png
new file mode 100755
index 0000000..3da75a1
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/tiletop.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png b/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..b2051b0
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png b/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..da6028c
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..5fe84c0
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..47f19f6
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..576fa36
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..4adc5e9
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..7d9a11a
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..bce1d00
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..9f24945
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..2e56d32
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..41a69e2
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..2f3a2be
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..0f937b7
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..a9a3206
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..a9bc8a2
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..5493d8e
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..1e150f5
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..7e6c99b
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/vol.png b/awesome/themes/powerarrow-dark/icons/vol.png
new file mode 100755
index 0000000..bbf33d4
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/vol.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/vol_low.png b/awesome/themes/powerarrow-dark/icons/vol_low.png
new file mode 100755
index 0000000..aa3ce4d
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/vol_low.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/vol_mute.png b/awesome/themes/powerarrow-dark/icons/vol_mute.png
new file mode 100755
index 0000000..e855fd2
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/vol_mute.png differ
diff --git a/awesome/themes/powerarrow-dark/icons/vol_no.png b/awesome/themes/powerarrow-dark/icons/vol_no.png
new file mode 100755
index 0000000..bbe917b
Binary files /dev/null and b/awesome/themes/powerarrow-dark/icons/vol_no.png differ
diff --git a/awesome/themes/powerarrow-dark/theme.lua b/awesome/themes/powerarrow-dark/theme.lua
new file mode 100644
index 0000000..1210cb1
--- /dev/null
+++ b/awesome/themes/powerarrow-dark/theme.lua
@@ -0,0 +1,359 @@
+--[[
+
+ Powerarrow Dark Awesome WM theme
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-dark"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 9"
+theme.fg_normal = "#DDDDFF"
+theme.fg_focus = "#EA6F81"
+theme.fg_urgent = "#CC9393"
+theme.bg_normal = "#1A1A1A"
+theme.bg_focus = "#313131"
+theme.bg_urgent = "#1A1A1A"
+theme.border_width = dpi(1)
+theme.border_normal = "#3F3F3F"
+theme.border_focus = "#7F7F7F"
+theme.border_marked = "#CC9393"
+theme.tasklist_bg_focus = "#1A1A1A"
+theme.titlebar_bg_focus = theme.bg_focus
+theme.titlebar_bg_normal = theme.bg_normal
+theme.titlebar_fg_focus = theme.fg_focus
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(140)
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.layout_tile = theme.dir .. "/icons/tile.png"
+theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.dir .. "/icons/fairv.png"
+theme.layout_fairh = theme.dir .. "/icons/fairh.png"
+theme.layout_spiral = theme.dir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
+theme.layout_max = theme.dir .. "/icons/max.png"
+theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
+theme.layout_floating = theme.dir .. "/icons/floating.png"
+theme.widget_ac = theme.dir .. "/icons/ac.png"
+theme.widget_battery = theme.dir .. "/icons/battery.png"
+theme.widget_battery_low = theme.dir .. "/icons/battery_low.png"
+theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png"
+theme.widget_mem = theme.dir .. "/icons/mem.png"
+theme.widget_cpu = theme.dir .. "/icons/cpu.png"
+theme.widget_temp = theme.dir .. "/icons/temp.png"
+theme.widget_net = theme.dir .. "/icons/net.png"
+theme.widget_hdd = theme.dir .. "/icons/hdd.png"
+theme.widget_music = theme.dir .. "/icons/note.png"
+theme.widget_music_on = theme.dir .. "/icons/note_on.png"
+theme.widget_vol = theme.dir .. "/icons/vol.png"
+theme.widget_vol_low = theme.dir .. "/icons/vol_low.png"
+theme.widget_vol_no = theme.dir .. "/icons/vol_no.png"
+theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png"
+theme.widget_mail = theme.dir .. "/icons/mail.png"
+theme.widget_mail_on = theme.dir .. "/icons/mail_on.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = dpi(0)
+theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png"
+theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
+
+local markup = lain.util.markup
+local separators = lain.util.separators
+
+local keyboardlayout = awful.widget.keyboardlayout:new()
+
+-- Textclock
+local clockicon = wibox.widget.imagebox(theme.widget_clock)
+local clock = awful.widget.watch(
+ "date +'%a %d %b %R'", 60,
+ function(widget, stdout)
+ widget:set_markup(" " .. markup.font(theme.font, stdout))
+ end
+)
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { clock },
+ notification_preset = {
+ font = "Terminus 10",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Mail IMAP check
+local mailicon = wibox.widget.imagebox(theme.widget_mail)
+--[[ commented because it needs to be set before use
+mailicon:buttons(my_table.join(awful.button({ }, 1, function () awful.spawn(mail) end)))
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ if mailcount > 0 then
+ widget:set_markup(markup.font(theme.font, " " .. mailcount .. " "))
+ mailicon:set_image(theme.widget_mail_on)
+ else
+ widget:set_text("")
+ mailicon:set_image(theme.widget_mail)
+ end
+ end
+})
+--]]
+
+-- MPD
+local musicplr = awful.util.terminal .. " -title Music -e ncmpcpp"
+local mpdicon = wibox.widget.imagebox(theme.widget_music)
+mpdicon:buttons(my_table.join(
+ awful.button({ "Mod4" }, 1, function () awful.spawn(musicplr) end),
+ awful.button({ }, 1, function ()
+ os.execute("mpc prev")
+ theme.mpd.update()
+ end),
+ awful.button({ }, 2, function ()
+ os.execute("mpc toggle")
+ theme.mpd.update()
+ end),
+ awful.button({ }, 3, function ()
+ os.execute("mpc next")
+ theme.mpd.update()
+ end)))
+theme.mpd = lain.widget.mpd({
+ settings = function()
+ if mpd_now.state == "play" then
+ artist = " " .. mpd_now.artist .. " "
+ title = mpd_now.title .. " "
+ mpdicon:set_image(theme.widget_music_on)
+ elseif mpd_now.state == "pause" then
+ artist = " mpd "
+ title = "paused "
+ else
+ artist = ""
+ title = ""
+ mpdicon:set_image(theme.widget_music)
+ end
+
+ widget:set_markup(markup.font(theme.font, markup("#EA6F81", artist) .. title))
+ end
+})
+
+-- MEM
+local memicon = wibox.widget.imagebox(theme.widget_mem)
+local mem = lain.widget.mem({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB "))
+ end
+})
+
+-- CPU
+local cpuicon = wibox.widget.imagebox(theme.widget_cpu)
+local cpu = lain.widget.cpu({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% "))
+ end
+})
+
+-- Coretemp
+local tempicon = wibox.widget.imagebox(theme.widget_temp)
+local temp = lain.widget.temp({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C "))
+ end
+})
+
+-- / fs
+local fsicon = wibox.widget.imagebox(theme.widget_hdd)
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10" },
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. fs_now["/"].percentage .. "% "))
+ end
+})
+--]]
+
+-- Battery
+local baticon = wibox.widget.imagebox(theme.widget_battery)
+local bat = lain.widget.bat({
+ settings = function()
+ if bat_now.status and bat_now.status ~= "N/A" then
+ if bat_now.ac_status == 1 then
+ baticon:set_image(theme.widget_ac)
+ elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then
+ baticon:set_image(theme.widget_battery_empty)
+ elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then
+ baticon:set_image(theme.widget_battery_low)
+ else
+ baticon:set_image(theme.widget_battery)
+ end
+ widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% "))
+ else
+ widget:set_markup(markup.font(theme.font, " AC "))
+ baticon:set_image(theme.widget_ac)
+ end
+ end
+})
+
+-- ALSA volume
+local volicon = wibox.widget.imagebox(theme.widget_vol)
+theme.volume = lain.widget.alsa({
+ settings = function()
+ if volume_now.status == "off" then
+ volicon:set_image(theme.widget_vol_mute)
+ elseif tonumber(volume_now.level) == 0 then
+ volicon:set_image(theme.widget_vol_no)
+ elseif tonumber(volume_now.level) <= 50 then
+ volicon:set_image(theme.widget_vol_low)
+ else
+ volicon:set_image(theme.widget_vol)
+ end
+
+ widget:set_markup(markup.font(theme.font, " " .. volume_now.level .. "% "))
+ end
+})
+theme.volume.widget:buttons(awful.util.table.join(
+ awful.button({}, 4, function ()
+ awful.util.spawn("amixer set Master 1%+")
+ theme.volume.update()
+ end),
+ awful.button({}, 5, function ()
+ awful.util.spawn("amixer set Master 1%-")
+ theme.volume.update()
+ end)
+))
+
+-- Net
+local neticon = wibox.widget.imagebox(theme.widget_net)
+local net = lain.widget.net({
+ settings = function()
+ widget:set_markup(markup.font(theme.font,
+ markup("#7AC82E", " " .. string.format("%06.1f", net_now.received))
+ .. " " ..
+ markup("#46A8C3", " " .. string.format("%06.1f", net_now.sent) .. " ")))
+ end
+})
+
+-- Separators
+local spr = wibox.widget.textbox(' ')
+local arrl_dl = separators.arrow_left(theme.bg_focus, "alpha")
+local arrl_ld = separators.arrow_left("alpha", theme.bg_focus)
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ --spr,
+ s.mytaglist,
+ s.mypromptbox,
+ spr,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ keyboardlayout,
+ spr,
+ arrl_ld,
+ wibox.container.background(mpdicon, theme.bg_focus),
+ wibox.container.background(theme.mpd.widget, theme.bg_focus),
+ arrl_dl,
+ volicon,
+ theme.volume.widget,
+ arrl_ld,
+ wibox.container.background(mailicon, theme.bg_focus),
+ --wibox.container.background(theme.mail.widget, theme.bg_focus),
+ arrl_dl,
+ memicon,
+ mem.widget,
+ arrl_ld,
+ wibox.container.background(cpuicon, theme.bg_focus),
+ wibox.container.background(cpu.widget, theme.bg_focus),
+ arrl_dl,
+ tempicon,
+ temp.widget,
+ arrl_ld,
+ wibox.container.background(fsicon, theme.bg_focus),
+ --wibox.container.background(theme.fs.widget, theme.bg_focus),
+ arrl_dl,
+ baticon,
+ bat.widget,
+ arrl_ld,
+ wibox.container.background(neticon, theme.bg_focus),
+ wibox.container.background(net.widget, theme.bg_focus),
+ arrl_dl,
+ clock,
+ spr,
+ arrl_ld,
+ wibox.container.background(s.mylayoutbox, theme.bg_focus),
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/powerarrow-dark/wall.png b/awesome/themes/powerarrow-dark/wall.png
new file mode 100755
index 0000000..9d1118b
Binary files /dev/null and b/awesome/themes/powerarrow-dark/wall.png differ
diff --git a/awesome/themes/powerarrow/binclock.lua b/awesome/themes/powerarrow/binclock.lua
new file mode 100644
index 0000000..68668ea
--- /dev/null
+++ b/awesome/themes/powerarrow/binclock.lua
@@ -0,0 +1,96 @@
+--[[
+
+ Licensed under GNU General Public License v2
+ * (c) 2017, Luca CPZ
+ * (c) 2013, romockee
+
+--]]
+
+local gears = require("gears")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+local date = os.date
+local ipairs = ipairs
+local math = math
+local select = select
+local string = string
+
+local binclock = {}
+
+function binclock.dec2bin(num, bits)
+ local bits, t = bits or select(2, math.frexp(num)), {}
+ for b = bits, 1, -1 do
+ t[b] = math.fmod(num, 2)
+ num = (num - t[b]) / 2
+ end
+ return t
+end
+
+function binclock.paintdot(cr, val, shift)
+ local height = 0
+ for _, bit in ipairs(binclock.dec2bin(val, 4)) do
+ if bit >= 1 then
+ cr:set_source(gears.color(binclock.color_active))
+ else
+ cr:set_source(gears.color(binclock.color_inactive))
+ end
+ cr:rectangle(shift, height, binclock.dotsize, binclock.dotsize)
+ cr:fill()
+ height = height + binclock.dotsize + binclock.step
+ end
+end
+
+local function factory(args)
+ local args = args or {}
+
+ binclock.width = args.width or dpi(42)
+ binclock.height = args.height or dpi(18)
+ binclock.show_seconds = args.show_seconds or false
+ binclock.color_active = args.color_active or "#CCCCCC"
+ binclock.color_inactive = args.color_inactive or "#444444"
+ binclock.dotsize = math.floor(binclock.height / 5)
+ binclock.step = math.floor(binclock.dotsize / 3)
+
+ binclock.widget = wibox.widget {
+ fit = function(self, context, width, height)
+ return binclock.width, binclock.height
+ end,
+ draw = function(self, context, cr, width, height)
+ local t = date("*t")
+
+ local hour = string.format("%02d", t.hour)
+ local min = string.format("%02d", t.min)
+ local sec = string.format("%02d", t.sec)
+
+ local col_count = 4
+ if binclock.show_seconds then
+ col_count = 6
+ end
+ local step = math.floor((binclock.width - col_count * binclock.dotsize) / 8)
+
+ binclock.paintdot(cr, string.sub(hour, 1, 1), step, 2)
+ binclock.paintdot(cr, string.sub(hour, 2, 2), binclock.dotsize + 2 * step)
+
+ binclock.paintdot(cr, string.sub(min, 1, 1), binclock.dotsize * 2 + 4 * step)
+ binclock.paintdot(cr, string.sub(min, 2, 2), binclock.dotsize * 3 + 5 * step)
+
+ if binclock.show_seconds then
+ binclock.paintdot(cr, string.sub(sec, 1, 1), binclock.dotsize * 4 + 7 * step)
+ binclock.paintdot(cr, string.sub(sec, 2, 2), binclock.dotsize * 5 + 8 * step)
+ end
+ end,
+ layout = wibox.widget.base.make_widget
+ }
+
+ binclock.timer = gears.timer {
+ autostart = true,
+ timeout = binclock.show_seconds and 1 or 60,
+ callback = function()
+ binclock.widget:emit_signal("widget::redraw_needed")
+ end
+ }
+
+ return binclock
+end
+
+return factory
diff --git a/awesome/themes/powerarrow/icons/ac.png b/awesome/themes/powerarrow/icons/ac.png
new file mode 100755
index 0000000..453af4e
Binary files /dev/null and b/awesome/themes/powerarrow/icons/ac.png differ
diff --git a/awesome/themes/powerarrow/icons/awesome.png b/awesome/themes/powerarrow/icons/awesome.png
new file mode 100755
index 0000000..4cabb6c
Binary files /dev/null and b/awesome/themes/powerarrow/icons/awesome.png differ
diff --git a/awesome/themes/powerarrow/icons/battery.png b/awesome/themes/powerarrow/icons/battery.png
new file mode 100755
index 0000000..7dd78a5
Binary files /dev/null and b/awesome/themes/powerarrow/icons/battery.png differ
diff --git a/awesome/themes/powerarrow/icons/battery_empty.png b/awesome/themes/powerarrow/icons/battery_empty.png
new file mode 100755
index 0000000..763aa93
Binary files /dev/null and b/awesome/themes/powerarrow/icons/battery_empty.png differ
diff --git a/awesome/themes/powerarrow/icons/battery_low.png b/awesome/themes/powerarrow/icons/battery_low.png
new file mode 100755
index 0000000..626222f
Binary files /dev/null and b/awesome/themes/powerarrow/icons/battery_low.png differ
diff --git a/awesome/themes/powerarrow/icons/brightness.png b/awesome/themes/powerarrow/icons/brightness.png
new file mode 100755
index 0000000..030d524
Binary files /dev/null and b/awesome/themes/powerarrow/icons/brightness.png differ
diff --git a/awesome/themes/powerarrow/icons/cpu.png b/awesome/themes/powerarrow/icons/cpu.png
new file mode 100755
index 0000000..c28a787
Binary files /dev/null and b/awesome/themes/powerarrow/icons/cpu.png differ
diff --git a/awesome/themes/powerarrow/icons/floating.png b/awesome/themes/powerarrow/icons/floating.png
new file mode 100755
index 0000000..079fea4
Binary files /dev/null and b/awesome/themes/powerarrow/icons/floating.png differ
diff --git a/awesome/themes/powerarrow/icons/fwd.png b/awesome/themes/powerarrow/icons/fwd.png
new file mode 100755
index 0000000..e9b875e
Binary files /dev/null and b/awesome/themes/powerarrow/icons/fwd.png differ
diff --git a/awesome/themes/powerarrow/icons/hdd.png b/awesome/themes/powerarrow/icons/hdd.png
new file mode 100755
index 0000000..8922eaa
Binary files /dev/null and b/awesome/themes/powerarrow/icons/hdd.png differ
diff --git a/awesome/themes/powerarrow/icons/mail.png b/awesome/themes/powerarrow/icons/mail.png
new file mode 100755
index 0000000..be656ed
Binary files /dev/null and b/awesome/themes/powerarrow/icons/mail.png differ
diff --git a/awesome/themes/powerarrow/icons/mail_on.png b/awesome/themes/powerarrow/icons/mail_on.png
new file mode 100755
index 0000000..ce8984f
Binary files /dev/null and b/awesome/themes/powerarrow/icons/mail_on.png differ
diff --git a/awesome/themes/powerarrow/icons/mem.png b/awesome/themes/powerarrow/icons/mem.png
new file mode 100755
index 0000000..ee6d480
Binary files /dev/null and b/awesome/themes/powerarrow/icons/mem.png differ
diff --git a/awesome/themes/powerarrow/icons/net.png b/awesome/themes/powerarrow/icons/net.png
new file mode 100755
index 0000000..769bfec
Binary files /dev/null and b/awesome/themes/powerarrow/icons/net.png differ
diff --git a/awesome/themes/powerarrow/icons/next.png b/awesome/themes/powerarrow/icons/next.png
new file mode 100755
index 0000000..9a62593
Binary files /dev/null and b/awesome/themes/powerarrow/icons/next.png differ
diff --git a/awesome/themes/powerarrow/icons/note.png b/awesome/themes/powerarrow/icons/note.png
new file mode 100755
index 0000000..19866aa
Binary files /dev/null and b/awesome/themes/powerarrow/icons/note.png differ
diff --git a/awesome/themes/powerarrow/icons/note_on.png b/awesome/themes/powerarrow/icons/note_on.png
new file mode 100755
index 0000000..aae5ca3
Binary files /dev/null and b/awesome/themes/powerarrow/icons/note_on.png differ
diff --git a/awesome/themes/powerarrow/icons/pacman.png b/awesome/themes/powerarrow/icons/pacman.png
new file mode 100755
index 0000000..575144a
Binary files /dev/null and b/awesome/themes/powerarrow/icons/pacman.png differ
diff --git a/awesome/themes/powerarrow/icons/pause.png b/awesome/themes/powerarrow/icons/pause.png
new file mode 100755
index 0000000..d4546e6
Binary files /dev/null and b/awesome/themes/powerarrow/icons/pause.png differ
diff --git a/awesome/themes/powerarrow/icons/phones.png b/awesome/themes/powerarrow/icons/phones.png
new file mode 100755
index 0000000..bec0e57
Binary files /dev/null and b/awesome/themes/powerarrow/icons/phones.png differ
diff --git a/awesome/themes/powerarrow/icons/play.png b/awesome/themes/powerarrow/icons/play.png
new file mode 100755
index 0000000..b228f74
Binary files /dev/null and b/awesome/themes/powerarrow/icons/play.png differ
diff --git a/awesome/themes/powerarrow/icons/prev.png b/awesome/themes/powerarrow/icons/prev.png
new file mode 100755
index 0000000..4c4ca40
Binary files /dev/null and b/awesome/themes/powerarrow/icons/prev.png differ
diff --git a/awesome/themes/powerarrow/icons/rwd.png b/awesome/themes/powerarrow/icons/rwd.png
new file mode 100755
index 0000000..ac3d6f4
Binary files /dev/null and b/awesome/themes/powerarrow/icons/rwd.png differ
diff --git a/awesome/themes/powerarrow/icons/scissors.png b/awesome/themes/powerarrow/icons/scissors.png
new file mode 100755
index 0000000..30f867d
Binary files /dev/null and b/awesome/themes/powerarrow/icons/scissors.png differ
diff --git a/awesome/themes/powerarrow/icons/square_sel.png b/awesome/themes/powerarrow/icons/square_sel.png
new file mode 100755
index 0000000..874a3a5
Binary files /dev/null and b/awesome/themes/powerarrow/icons/square_sel.png differ
diff --git a/awesome/themes/powerarrow/icons/square_unsel.png b/awesome/themes/powerarrow/icons/square_unsel.png
new file mode 100755
index 0000000..979642f
Binary files /dev/null and b/awesome/themes/powerarrow/icons/square_unsel.png differ
diff --git a/awesome/themes/powerarrow/icons/stop.png b/awesome/themes/powerarrow/icons/stop.png
new file mode 100755
index 0000000..207915b
Binary files /dev/null and b/awesome/themes/powerarrow/icons/stop.png differ
diff --git a/awesome/themes/powerarrow/icons/submenu.png b/awesome/themes/powerarrow/icons/submenu.png
new file mode 100755
index 0000000..e9a6b7c
Binary files /dev/null and b/awesome/themes/powerarrow/icons/submenu.png differ
diff --git a/awesome/themes/powerarrow/icons/task.png b/awesome/themes/powerarrow/icons/task.png
new file mode 100755
index 0000000..962b51a
Binary files /dev/null and b/awesome/themes/powerarrow/icons/task.png differ
diff --git a/awesome/themes/powerarrow/icons/temp.png b/awesome/themes/powerarrow/icons/temp.png
new file mode 100755
index 0000000..7952de8
Binary files /dev/null and b/awesome/themes/powerarrow/icons/temp.png differ
diff --git a/awesome/themes/powerarrow/icons/tile.png b/awesome/themes/powerarrow/icons/tile.png
new file mode 100755
index 0000000..01fd1b5
Binary files /dev/null and b/awesome/themes/powerarrow/icons/tile.png differ
diff --git a/awesome/themes/powerarrow/icons/tilebottom.png b/awesome/themes/powerarrow/icons/tilebottom.png
new file mode 100755
index 0000000..bff1f42
Binary files /dev/null and b/awesome/themes/powerarrow/icons/tilebottom.png differ
diff --git a/awesome/themes/powerarrow/icons/tileleft.png b/awesome/themes/powerarrow/icons/tileleft.png
new file mode 100755
index 0000000..205140a
Binary files /dev/null and b/awesome/themes/powerarrow/icons/tileleft.png differ
diff --git a/awesome/themes/powerarrow/icons/tiletop.png b/awesome/themes/powerarrow/icons/tiletop.png
new file mode 100755
index 0000000..148cb9b
Binary files /dev/null and b/awesome/themes/powerarrow/icons/tiletop.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/close_focus.png b/awesome/themes/powerarrow/icons/titlebar/close_focus.png
new file mode 100755
index 0000000..cccbadc
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/close_focus.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/close_normal.png b/awesome/themes/powerarrow/icons/titlebar/close_normal.png
new file mode 100755
index 0000000..cb0c3fa
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/close_normal.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png b/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png
new file mode 100755
index 0000000..77ea127
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/floating_focus_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png b/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png
new file mode 100755
index 0000000..d254a73
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/floating_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png b/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png
new file mode 100755
index 0000000..c5ce3de
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/floating_normal_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png b/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png
new file mode 100755
index 0000000..850b602
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/floating_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png b/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png
new file mode 100755
index 0000000..9fc0483
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/maximized_focus_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png b/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png
new file mode 100755
index 0000000..f684470
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/maximized_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png b/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png
new file mode 100755
index 0000000..4aa4196
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/maximized_normal_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png b/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png
new file mode 100755
index 0000000..bfe01a3
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/maximized_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png b/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png
new file mode 100755
index 0000000..86e61b7
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/ontop_focus_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png b/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png
new file mode 100755
index 0000000..286d439
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/ontop_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png b/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png
new file mode 100755
index 0000000..fcee772
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/ontop_normal_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png b/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png
new file mode 100755
index 0000000..a628626
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/ontop_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png b/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png
new file mode 100755
index 0000000..5af45c1
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/sticky_focus_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png b/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png
new file mode 100755
index 0000000..22d7453
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/sticky_focus_inactive.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png b/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png
new file mode 100755
index 0000000..aad079e
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/sticky_normal_active.png differ
diff --git a/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png b/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png
new file mode 100755
index 0000000..5f3e655
Binary files /dev/null and b/awesome/themes/powerarrow/icons/titlebar/sticky_normal_inactive.png differ
diff --git a/awesome/themes/powerarrow/theme.lua b/awesome/themes/powerarrow/theme.lua
new file mode 100644
index 0000000..2d7f7c3
--- /dev/null
+++ b/awesome/themes/powerarrow/theme.lua
@@ -0,0 +1,400 @@
+--[[
+
+ Powerarrow Awesome WM theme
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local math, string, os = math, string, os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 9"
+theme.fg_normal = "#FEFEFE"
+theme.fg_focus = "#32D6FF"
+theme.fg_urgent = "#C83F11"
+theme.bg_normal = "#222222"
+theme.bg_focus = "#1E2320"
+theme.bg_urgent = "#3F3F3F"
+theme.taglist_fg_focus = "#00CCFF"
+theme.tasklist_bg_focus = "#222222"
+theme.tasklist_fg_focus = "#00CCFF"
+theme.border_width = dpi(2)
+theme.border_normal = "#3F3F3F"
+theme.border_focus = "#6F6F6F"
+theme.border_marked = "#CC9393"
+theme.titlebar_bg_focus = "#3F3F3F"
+theme.titlebar_bg_normal = "#3F3F3F"
+theme.titlebar_bg_focus = theme.bg_focus
+theme.titlebar_bg_normal = theme.bg_normal
+theme.titlebar_fg_focus = theme.fg_focus
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(140)
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.awesome_icon = theme.dir .. "/icons/awesome.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.layout_tile = theme.dir .. "/icons/tile.png"
+theme.layout_tileleft = theme.dir .. "/icons/tileleft.png"
+theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png"
+theme.layout_tiletop = theme.dir .. "/icons/tiletop.png"
+theme.layout_fairv = theme.dir .. "/icons/fairv.png"
+theme.layout_fairh = theme.dir .. "/icons/fairh.png"
+theme.layout_spiral = theme.dir .. "/icons/spiral.png"
+theme.layout_dwindle = theme.dir .. "/icons/dwindle.png"
+theme.layout_max = theme.dir .. "/icons/max.png"
+theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png"
+theme.layout_magnifier = theme.dir .. "/icons/magnifier.png"
+theme.layout_floating = theme.dir .. "/icons/floating.png"
+theme.widget_ac = theme.dir .. "/icons/ac.png"
+theme.widget_battery = theme.dir .. "/icons/battery.png"
+theme.widget_battery_low = theme.dir .. "/icons/battery_low.png"
+theme.widget_battery_empty = theme.dir .. "/icons/battery_empty.png"
+theme.widget_brightness = theme.dir .. "/icons/brightness.png"
+theme.widget_mem = theme.dir .. "/icons/mem.png"
+theme.widget_cpu = theme.dir .. "/icons/cpu.png"
+theme.widget_temp = theme.dir .. "/icons/temp.png"
+theme.widget_net = theme.dir .. "/icons/net.png"
+theme.widget_hdd = theme.dir .. "/icons/hdd.png"
+theme.widget_music = theme.dir .. "/icons/note.png"
+theme.widget_music_on = theme.dir .. "/icons/note_on.png"
+theme.widget_music_pause = theme.dir .. "/icons/pause.png"
+theme.widget_music_stop = theme.dir .. "/icons/stop.png"
+theme.widget_vol = theme.dir .. "/icons/vol.png"
+theme.widget_vol_low = theme.dir .. "/icons/vol_low.png"
+theme.widget_vol_no = theme.dir .. "/icons/vol_no.png"
+theme.widget_vol_mute = theme.dir .. "/icons/vol_mute.png"
+theme.widget_mail = theme.dir .. "/icons/mail.png"
+theme.widget_mail_on = theme.dir .. "/icons/mail_on.png"
+theme.widget_task = theme.dir .. "/icons/task.png"
+theme.widget_scissors = theme.dir .. "/icons/scissors.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = 0
+theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png"
+theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png"
+theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png"
+theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png"
+theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png"
+theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png"
+theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png"
+theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png"
+theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png"
+theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png"
+
+local markup = lain.util.markup
+local separators = lain.util.separators
+
+-- Binary clock
+local binclock = require("themes.powerarrow.binclock"){
+ height = dpi(32),
+ show_seconds = true,
+ color_active = theme.fg_normal,
+ color_inactive = theme.bg_focus
+}
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ --cal = "cal --color=always",
+ attach_to = { binclock.widget },
+ notification_preset = {
+ font = "Terminus 10",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Taskwarrior
+local task = wibox.widget.imagebox(theme.widget_task)
+lain.widget.contrib.task.attach(task, {
+ -- do not colorize output
+ show_cmd = "task | sed -r 's/\\x1B\\[([0-9]{1,2}(;[0-9]{1,2})?)?[mGK]//g'"
+})
+task:buttons(my_table.join(awful.button({}, 1, lain.widget.contrib.task.prompt)))
+
+-- Scissors (xsel copy and paste)
+local scissors = wibox.widget.imagebox(theme.widget_scissors)
+scissors:buttons(my_table.join(awful.button({}, 1, function() awful.spawn.with_shell("xsel | xsel -i -b") end)))
+
+-- Mail IMAP check
+--[[ commented because it needs to be set before use
+local mailicon = wibox.widget.imagebox(theme.widget_mail)
+mailicon:buttons(my_table.join(awful.button({ }, 1, function () awful.spawn(mail) end)))
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ if mailcount > 0 then
+ widget:set_text(" " .. mailcount .. " ")
+ mailicon:set_image(theme.widget_mail_on)
+ else
+ widget:set_text("")
+ mailicon:set_image(theme.widget_mail)
+ end
+ end
+})
+--]]
+
+-- ALSA volume
+theme.volume = lain.widget.alsabar({
+ --togglechannel = "IEC958,3",
+ notification_preset = { font = "Terminus 10", fg = theme.fg_normal },
+})
+
+-- MPD
+local musicplr = awful.util.terminal .. " -title Music -g 130x34-320+16 -e ncmpcpp"
+local mpdicon = wibox.widget.imagebox(theme.widget_music)
+mpdicon:buttons(my_table.join(
+ awful.button({ modkey }, 1, function () awful.spawn.with_shell(musicplr) end),
+ awful.button({ }, 1, function ()
+ os.execute("mpc prev")
+ theme.mpd.update()
+ end),
+ awful.button({ }, 2, function ()
+ os.execute("mpc toggle")
+ theme.mpd.update()
+ end),
+ awful.button({ }, 3, function ()
+ os.execute("mpc next")
+ theme.mpd.update()
+ end)))
+theme.mpd = lain.widget.mpd({
+ settings = function()
+ if mpd_now.state == "play" then
+ artist = " " .. mpd_now.artist .. " "
+ title = mpd_now.title .. " "
+ mpdicon:set_image(theme.widget_music_on)
+ widget:set_markup(markup.font(theme.font, markup("#FF8466", artist) .. " " .. title))
+ elseif mpd_now.state == "pause" then
+ widget:set_markup(markup.font(theme.font, " mpd paused "))
+ mpdicon:set_image(theme.widget_music_pause)
+ else
+ widget:set_text("")
+ mpdicon:set_image(theme.widget_music)
+ end
+ end
+})
+
+-- MEM
+local memicon = wibox.widget.imagebox(theme.widget_mem)
+local mem = lain.widget.mem({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. mem_now.used .. "MB "))
+ end
+})
+
+-- CPU
+local cpuicon = wibox.widget.imagebox(theme.widget_cpu)
+local cpu = lain.widget.cpu({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. cpu_now.usage .. "% "))
+ end
+})
+
+--[[ Coretemp (lm_sensors, per core)
+local tempwidget = awful.widget.watch({awful.util.shell, '-c', 'sensors | grep Core'}, 30,
+function(widget, stdout)
+ local temps = ""
+ for line in stdout:gmatch("[^\r\n]+") do
+ temps = temps .. line:match("+(%d+).*°C") .. "° " -- in Celsius
+ end
+ widget:set_markup(markup.font(theme.font, " " .. temps))
+end)
+--]]
+-- Coretemp (lain, average)
+local temp = lain.widget.temp({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, " " .. coretemp_now .. "°C "))
+ end
+})
+--]]
+local tempicon = wibox.widget.imagebox(theme.widget_temp)
+
+-- / fs
+local fsicon = wibox.widget.imagebox(theme.widget_hdd)
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10" },
+ settings = function()
+ local fsp = string.format(" %3.2f %s ", fs_now["/"].free, fs_now["/"].units)
+ widget:set_markup(markup.font(theme.font, fsp))
+ end
+})
+--]]
+
+-- Battery
+local baticon = wibox.widget.imagebox(theme.widget_battery)
+local bat = lain.widget.bat({
+ settings = function()
+ if bat_now.status and bat_now.status ~= "N/A" then
+ if bat_now.ac_status == 1 then
+ widget:set_markup(markup.font(theme.font, " AC "))
+ baticon:set_image(theme.widget_ac)
+ return
+ elseif not bat_now.perc and tonumber(bat_now.perc) <= 5 then
+ baticon:set_image(theme.widget_battery_empty)
+ elseif not bat_now.perc and tonumber(bat_now.perc) <= 15 then
+ baticon:set_image(theme.widget_battery_low)
+ else
+ baticon:set_image(theme.widget_battery)
+ end
+ widget:set_markup(markup.font(theme.font, " " .. bat_now.perc .. "% "))
+ else
+ widget:set_markup()
+ baticon:set_image(theme.widget_ac)
+ end
+ end
+})
+
+-- Net
+local neticon = wibox.widget.imagebox(theme.widget_net)
+local net = lain.widget.net({
+ settings = function()
+ widget:set_markup(markup.fontfg(theme.font, "#FEFEFE", " " .. net_now.received .. " ↓↑ " .. net_now.sent .. " "))
+ end
+})
+
+-- Brigtness
+local brighticon = wibox.widget.imagebox(theme.widget_brightness)
+-- If you use xbacklight, comment the line with "light -G" and uncomment the line bellow
+-- local brightwidget = awful.widget.watch('xbacklight -get', 0.1,
+local brightwidget = awful.widget.watch('light -G', 0.1,
+ function(widget, stdout, stderr, exitreason, exitcode)
+ local brightness_level = tonumber(string.format("%.0f", stdout))
+ widget:set_markup(markup.font(theme.font, " " .. brightness_level .. "%"))
+end)
+
+-- Separators
+local arrow = separators.arrow_left
+
+function theme.powerline_rl(cr, width, height)
+ local arrow_depth, offset = height/2, 0
+
+ -- Avoid going out of the (potential) clip area
+ if arrow_depth < 0 then
+ width = width + 2*arrow_depth
+ offset = -arrow_depth
+ end
+
+ cr:move_to(offset + arrow_depth , 0 )
+ cr:line_to(offset + width , 0 )
+ cr:line_to(offset + width - arrow_depth , height/2 )
+ cr:line_to(offset + width , height )
+ cr:line_to(offset + arrow_depth , height )
+ cr:line_to(offset , height/2 )
+
+ cr:close_path()
+end
+
+local function pl(widget, bgcolor, padding)
+ return wibox.container.background(wibox.container.margin(widget, dpi(16), dpi(16)), bgcolor, theme.powerline_rl)
+end
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(16), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ --spr,
+ s.mytaglist,
+ s.mypromptbox,
+ spr,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ wibox.container.margin(scissors, dpi(4), dpi(8)),
+ --[[ using shapes
+ pl(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, "#343434"),
+ pl(task, "#343434"),
+ --pl(wibox.widget { mailicon, mail and theme.mail.widget, layout = wibox.layout.align.horizontal }, "#343434"),
+ pl(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, "#777E76"),
+ pl(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, "#4B696D"),
+ pl(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, "#4B3B51"),
+ --pl(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, "#CB755B"),
+ pl(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, "#8DAA9A"),
+ pl(wibox.widget { neticon, net.widget, layout = wibox.layout.align.horizontal }, "#C0C0A2"),
+ pl(binclock.widget, "#777E76"),
+ --]]
+ -- using separators
+ arrow(theme.bg_normal, "#343434"),
+ wibox.container.background(wibox.container.margin(wibox.widget { mailicon, theme.mail and theme.mail.widget, layout = wibox.layout.align.horizontal }, dpi(4), dpi(7)), "#343434"),
+ arrow("#343434", theme.bg_normal),
+ wibox.container.background(wibox.container.margin(wibox.widget { mpdicon, theme.mpd.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(6)), theme.bg_focus),
+ arrow(theme.bg_normal, "#343434"),
+ wibox.container.background(wibox.container.margin(task, dpi(3), dpi(7)), "#343434"),
+ arrow("#343434", "#777E76"),
+ wibox.container.background(wibox.container.margin(wibox.widget { memicon, mem.widget, layout = wibox.layout.align.horizontal }, dpi(2), dpi(3)), "#777E76"),
+ arrow("#777E76", "#4B696D"),
+ wibox.container.background(wibox.container.margin(wibox.widget { cpuicon, cpu.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(4)), "#4B696D"),
+ arrow("#4B696D", "#4B3B51"),
+ wibox.container.background(wibox.container.margin(wibox.widget { tempicon, temp.widget, layout = wibox.layout.align.horizontal }, dpi(4), dpi(4)), "#4B3B51"),
+ arrow("#4B3B51", "#CB755B"),
+ wibox.container.background(wibox.container.margin(wibox.widget { fsicon, theme.fs and theme.fs.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#CB755B"),
+ arrow("#CB755B", "#8DAA9A"),
+ wibox.container.background(wibox.container.margin(wibox.widget { baticon, bat.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#8DAA9A"),
+ arrow("#8DAA9A", "#C0C0A2"),
+ wibox.container.background(wibox.container.margin(wibox.widget { nil, neticon, net.widget, layout = wibox.layout.align.horizontal }, dpi(3), dpi(3)), "#C0C0A2"),
+ arrow("#C0C0A2", "#777E76"),
+ wibox.container.background(wibox.container.margin(binclock.widget, dpi(4), dpi(8)), "#777E76"),
+ arrow("#777E76", "alpha"),
+ --]]
+ s.mylayoutbox,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/powerarrow/wall.png b/awesome/themes/powerarrow/wall.png
new file mode 100755
index 0000000..0989db9
Binary files /dev/null and b/awesome/themes/powerarrow/wall.png differ
diff --git a/awesome/themes/rainbow/icons/awesome.png b/awesome/themes/rainbow/icons/awesome.png
new file mode 100755
index 0000000..d99fd37
Binary files /dev/null and b/awesome/themes/rainbow/icons/awesome.png differ
diff --git a/awesome/themes/rainbow/icons/square_sel.png b/awesome/themes/rainbow/icons/square_sel.png
new file mode 100755
index 0000000..532719f
Binary files /dev/null and b/awesome/themes/rainbow/icons/square_sel.png differ
diff --git a/awesome/themes/rainbow/icons/square_unsel.png b/awesome/themes/rainbow/icons/square_unsel.png
new file mode 100755
index 0000000..72dea5b
Binary files /dev/null and b/awesome/themes/rainbow/icons/square_unsel.png differ
diff --git a/awesome/themes/rainbow/icons/submenu.png b/awesome/themes/rainbow/icons/submenu.png
new file mode 100755
index 0000000..26ab82a
Binary files /dev/null and b/awesome/themes/rainbow/icons/submenu.png differ
diff --git a/awesome/themes/rainbow/theme.lua b/awesome/themes/rainbow/theme.lua
new file mode 100644
index 0000000..310618a
--- /dev/null
+++ b/awesome/themes/rainbow/theme.lua
@@ -0,0 +1,279 @@
+--[[
+
+ Rainbow Awesome WM theme 2.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.default_dir = require("awful.util").get_themes_dir() .. "default"
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/rainbow"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 10.5"
+theme.fg_normal = "#9E9E9E"
+theme.fg_focus = "#EBEBFF"
+theme.bg_normal = "#242424"
+theme.bg_focus = "#242424"
+theme.fg_urgent = "#000000"
+theme.bg_urgent = "#FFFFFF"
+theme.border_width = dpi(1)
+theme.border_normal = "#242424"
+theme.border_focus = "#EBEBFF"
+theme.taglist_fg_focus = "#EDEFFF"
+theme.taglist_bg_focus = "#242424"
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(140)
+theme.ocol = ""
+theme.tasklist_sticky = theme.ocol .. "[S]"
+theme.tasklist_ontop = theme.ocol .. "[T]"
+theme.tasklist_floating = theme.ocol .. "[F]"
+theme.tasklist_maximized_horizontal = theme.ocol .. "[M] "
+theme.tasklist_maximized_vertical = ""
+theme.tasklist_disable_icon = true
+theme.awesome_icon = theme.dir .."/icons/awesome.png"
+theme.menu_submenu_icon = theme.dir .."/icons/submenu.png"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.useless_gap = dpi(8)
+theme.layout_txt_tile = "[t]"
+theme.layout_txt_tileleft = "[l]"
+theme.layout_txt_tilebottom = "[b]"
+theme.layout_txt_tiletop = "[tt]"
+theme.layout_txt_fairv = "[fv]"
+theme.layout_txt_fairh = "[fh]"
+theme.layout_txt_spiral = "[s]"
+theme.layout_txt_dwindle = "[d]"
+theme.layout_txt_max = "[m]"
+theme.layout_txt_fullscreen = "[F]"
+theme.layout_txt_magnifier = "[M]"
+theme.layout_txt_floating = "[*]"
+theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png"
+theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png"
+theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png"
+theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png"
+theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png"
+theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png"
+theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png"
+theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png"
+theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png"
+theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png"
+theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png"
+theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png"
+
+-- lain related
+theme.layout_txt_cascade = "[cascade]"
+theme.layout_txt_cascadetile = "[cascadetile]"
+theme.layout_txt_centerwork = "[centerwork]"
+theme.layout_txt_termfair = "[termfair]"
+theme.layout_txt_centerfair = "[centerfair]"
+
+local markup = lain.util.markup
+local white = theme.fg_focus
+local gray = theme.fg_normal
+
+-- Textclock
+local mytextclock = wibox.widget.textclock(markup(white, " %H:%M "))
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 11",
+ fg = white,
+ bg = theme.bg_normal
+ }
+})
+
+-- Mail IMAP check
+--[[ commented because it needs to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ mail_notification_preset.fg = white
+
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = "Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, mail) .. markup(white, count)))
+ end
+})
+--]]
+
+-- MPD
+theme.mpd = lain.widget.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
+
+ widget:set_markup(markup.font(theme.font, markup(gray, artist) .. markup(white, title)))
+ end
+})
+
+-- /home fs
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ notification_preset = { fg = white, bg = theme.bg_normal, font = "Terminus 10.5" },
+ settings = function()
+ local fs_header, fs_p = "", ""
+
+ if fs_now["/home"].percentage >= 90 then
+ fs_header = " Hdd "
+ fs_p = fs_now["/home"].percentage
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p)))
+ end
+})
+--]]
+
+-- ALSA volume bar
+theme.volume = lain.widget.alsabar({
+ ticks = true, width = dpi(67),
+ notification_preset = { font = theme.font }
+})
+theme.volume.tooltip.wibox.fg = theme.fg_focus
+theme.volume.tooltip.wibox.font = theme.font
+theme.volume.bar:buttons(my_table.join (
+ awful.button({}, 1, function()
+ awful.spawn(string.format("%s -e alsamixer", terminal))
+ end),
+ awful.button({}, 2, function()
+ os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 3, function()
+ os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 4, function()
+ os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end),
+ awful.button({}, 5, function()
+ os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel))
+ theme.volume.update()
+ end)
+))
+local volumebg = wibox.container.background(theme.volume.bar, "#585858", gears.shape.rectangle)
+local volumewidget = wibox.container.margin(volumebg, dpi(7), dpi(7), dpi(5), dpi(5))
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+ notification_preset = { font = theme.font, fg = white }
+})
+--]]
+
+-- Separators
+local first = wibox.widget.textbox(markup.font("Terminus 4", " "))
+local spr = wibox.widget.textbox(' ')
+
+local function update_txt_layoutbox(s)
+ -- Writes a string representation of the current layout in a textbox widget
+ local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or ""
+ s.mytxtlayoutbox:set_text(txt_l)
+end
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+
+ -- Textual layoutbox
+ s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))])
+ awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end)
+ awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end)
+ s.mytxtlayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function() awful.layout.inc(1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function() awful.layout.inc(-1) end),
+ awful.button({}, 4, function() awful.layout.inc(1) end),
+ awful.button({}, 5, function() awful.layout.inc(-1) end)))
+
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18), bg = theme.bg_normal, fg = theme.fg_normal })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ first,
+ s.mytaglist,
+ spr,
+ s.mytxtlayoutbox,
+ --spr,
+ s.mypromptbox,
+ spr,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ spr,
+ theme.mpd.widget,
+ --theme.mail.widget,
+ --theme.fs.widget,
+ volumewidget,
+ mytextclock,
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/rainbow/wall.png b/awesome/themes/rainbow/wall.png
new file mode 100755
index 0000000..6bed238
Binary files /dev/null and b/awesome/themes/rainbow/wall.png differ
diff --git a/awesome/themes/steamburn/icons/awesome.png b/awesome/themes/steamburn/icons/awesome.png
new file mode 100755
index 0000000..0306bdf
Binary files /dev/null and b/awesome/themes/steamburn/icons/awesome.png differ
diff --git a/awesome/themes/steamburn/icons/square_sel.png b/awesome/themes/steamburn/icons/square_sel.png
new file mode 100755
index 0000000..2bcabb8
Binary files /dev/null and b/awesome/themes/steamburn/icons/square_sel.png differ
diff --git a/awesome/themes/steamburn/icons/square_unsel.png b/awesome/themes/steamburn/icons/square_unsel.png
new file mode 100755
index 0000000..14c4fe4
Binary files /dev/null and b/awesome/themes/steamburn/icons/square_unsel.png differ
diff --git a/awesome/themes/steamburn/icons/submenu.png b/awesome/themes/steamburn/icons/submenu.png
new file mode 100755
index 0000000..12b97c6
Binary files /dev/null and b/awesome/themes/steamburn/icons/submenu.png differ
diff --git a/awesome/themes/steamburn/theme.lua b/awesome/themes/steamburn/theme.lua
new file mode 100644
index 0000000..118d706
--- /dev/null
+++ b/awesome/themes/steamburn/theme.lua
@@ -0,0 +1,278 @@
+--[[
+
+ Steamburn Awesome WM theme 3.0
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local os = os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.zenburn_dir = require("awful.util").get_themes_dir() .. "zenburn"
+theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/steamburn"
+theme.wallpaper = theme.dir .. "/wall.png"
+theme.font = "Terminus 10.5"
+theme.fg_normal = "#e2ccb0"
+theme.fg_focus = "#d88166"
+theme.fg_urgent = "#CC9393"
+theme.bg_normal = "#140c0b"
+theme.bg_focus = "#140c0b"
+theme.bg_urgent = "#2a1f1e"
+theme.border_width = dpi(1)
+theme.border_normal = "#302627"
+theme.border_focus = "#c2745b"
+theme.border_marked = "#CC9393"
+theme.taglist_fg_focus = "#d88166"
+theme.tasklist_bg_focus = "#140c0b"
+theme.tasklist_fg_focus = "#d88166"
+theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png"
+theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png"
+theme.menu_height = dpi(16)
+theme.menu_width = dpi(140)
+theme.awesome_icon = theme.dir .."/icons/awesome.png"
+theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png"
+theme.layout_txt_tile = "[t]"
+theme.layout_txt_tileleft = "[l]"
+theme.layout_txt_tilebottom = "[b]"
+theme.layout_txt_tiletop = "[tt]"
+theme.layout_txt_fairv = "[fv]"
+theme.layout_txt_fairh = "[fh]"
+theme.layout_txt_spiral = "[s]"
+theme.layout_txt_dwindle = "[d]"
+theme.layout_txt_max = "[m]"
+theme.layout_txt_fullscreen = "[F]"
+theme.layout_txt_magnifier = "[M]"
+theme.layout_txt_floating = "[|]"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = dpi(0)
+theme.titlebar_close_button_normal = theme.zenburn_dir.."/titlebar/close_normal.png"
+theme.titlebar_close_button_focus = theme.zenburn_dir.."/titlebar/close_focus.png"
+theme.titlebar_minimize_button_normal = theme.zenburn_dir.."/titlebar/minimize_normal.png"
+theme.titlebar_minimize_button_focus = theme.zenburn_dir.."/titlebar/minimize_focus.png"
+theme.titlebar_ontop_button_normal_inactive = theme.zenburn_dir.."/titlebar/ontop_normal_inactive.png"
+theme.titlebar_ontop_button_focus_inactive = theme.zenburn_dir.."/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_active = theme.zenburn_dir.."/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_active = theme.zenburn_dir.."/titlebar/ontop_focus_active.png"
+theme.titlebar_sticky_button_normal_inactive = theme.zenburn_dir.."/titlebar/sticky_normal_inactive.png"
+theme.titlebar_sticky_button_focus_inactive = theme.zenburn_dir.."/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_active = theme.zenburn_dir.."/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_active = theme.zenburn_dir.."/titlebar/sticky_focus_active.png"
+theme.titlebar_floating_button_normal_inactive = theme.zenburn_dir.."/titlebar/floating_normal_inactive.png"
+theme.titlebar_floating_button_focus_inactive = theme.zenburn_dir.."/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_active = theme.zenburn_dir.."/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_active = theme.zenburn_dir.."/titlebar/floating_focus_active.png"
+theme.titlebar_maximized_button_normal_inactive = theme.zenburn_dir.."/titlebar/maximized_normal_inactive.png"
+theme.titlebar_maximized_button_focus_inactive = theme.zenburn_dir.."/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_active = theme.zenburn_dir.."/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_active = theme.zenburn_dir.."/titlebar/maximized_focus_active.png"
+
+-- lain related
+theme.layout_txt_termfair = "[termfair]"
+theme.layout_txt_centerfair = "[centerfair]"
+
+local markup = lain.util.markup
+local gray = "#94928F"
+
+-- Textclock
+local mytextclock = wibox.widget.textclock(" %H:%M ")
+mytextclock.font = theme.font
+
+-- Calendar
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ font = "Terminus 11",
+ fg = theme.fg_normal,
+ bg = theme.bg_normal
+ }
+})
+
+-- Mail IMAP check
+--[[ to be set before use
+theme.mail = lain.widget.imap({
+ timeout = 180,
+ server = "server",
+ mail = "mail",
+ password = "keyring get mail",
+ settings = function()
+ mail = ""
+ count = ""
+
+ if mailcount > 0 then
+ mail = "Mail "
+ count = mailcount .. " "
+ end
+
+ widget:set_markup(markup(gray, mail) .. count)
+ end
+})
+--]]
+
+-- MPD
+theme.mpd = lain.widget.mpd({
+ settings = function()
+ 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
+
+ widget:set_markup(markup.font(theme.font, markup(gray, artist) .. title))
+ end
+})
+
+-- CPU
+local cpu = lain.widget.sysload({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, markup(gray, " Cpu ") .. load_1 .. " "))
+ end
+})
+
+-- MEM
+local mem = lain.widget.mem({
+ settings = function()
+ widget:set_markup(markup.font(theme.font, markup(gray, " Mem ") .. mem_now.used .. " "))
+ end
+})
+
+-- /home fs
+--[[ commented because it needs Gio/Glib >= 2.54
+theme.fs = lain.widget.fs({
+ partition = "/home",
+ notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Terminus 10.5" },
+})
+--]]
+
+-- Battery
+local bat = lain.widget.bat({
+ settings = function()
+ local perc = bat_now.perc
+ if bat_now.ac_status == 1 then perc = perc .. " Plug" end
+ widget:set_markup(markup.font(theme.font, markup(gray, " Bat ") .. perc .. " "))
+ end
+})
+
+-- Net checker
+local net = lain.widget.net({
+ settings = function()
+ if net_now.state == "up" then net_state = "On"
+ else net_state = "Off" end
+ widget:set_markup(markup.font(theme.font, markup(gray, " Net ") .. net_state .. " "))
+ end
+})
+
+-- ALSA volume
+theme.volume = lain.widget.alsa({
+ settings = function()
+ header = " Vol "
+ vlevel = volume_now.level
+
+ if volume_now.status == "off" then
+ vlevel = vlevel .. "M "
+ else
+ vlevel = vlevel .. " "
+ end
+
+ widget:set_markup(markup.font(theme.font, markup(gray, header) .. vlevel))
+ end
+})
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ --APPID =
+ city_id = 2643743, -- placeholder (London)
+})
+--]]
+
+-- Separators
+local first = wibox.widget.textbox(markup.font("Terminus 4", " "))
+local spr = wibox.widget.textbox(' ')
+
+local function update_txt_layoutbox(s)
+ -- Writes a string representation of the current layout in a textbox widget
+ local txt_l = theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))] or ""
+ s.mytxtlayoutbox:set_text(txt_l)
+end
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+
+ -- Textual layoutbox
+ s.mytxtlayoutbox = wibox.widget.textbox(theme["layout_txt_" .. awful.layout.getname(awful.layout.get(s))])
+ awful.tag.attached_connect_signal(s, "property::selected", function () update_txt_layoutbox(s) end)
+ awful.tag.attached_connect_signal(s, "property::layout", function () update_txt_layoutbox(s) end)
+ s.mytxtlayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function() awful.layout.inc(1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function() awful.layout.inc(-1) end),
+ awful.button({}, 4, function() awful.layout.inc(1) end),
+ awful.button({}, 5, function() awful.layout.inc(-1) end)))
+
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons)
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, awful.util.tasklist_buttons)
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(18) })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ first,
+ s.mytaglist,
+ spr,
+ s.mytxtlayoutbox,
+ --spr,
+ s.mypromptbox,
+ spr,
+ },
+ s.mytasklist, -- Middle widget
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget.systray(),
+ spr,
+ theme.mpd.widget,
+ --theme.mail.widget,
+ cpu.widget,
+ mem.widget,
+ bat.widget,
+ net.widget,
+ theme.volume.widget,
+ mytextclock
+ },
+ }
+end
+
+return theme
diff --git a/awesome/themes/steamburn/wall.png b/awesome/themes/steamburn/wall.png
new file mode 100755
index 0000000..57359d1
Binary files /dev/null and b/awesome/themes/steamburn/wall.png differ
diff --git a/awesome/themes/vertex/icons/awesome.png b/awesome/themes/vertex/icons/awesome.png
new file mode 100755
index 0000000..cbded64
Binary files /dev/null and b/awesome/themes/vertex/icons/awesome.png differ
diff --git a/awesome/themes/vertex/icons/bat-000-charging.png b/awesome/themes/vertex/icons/bat-000-charging.png
new file mode 100755
index 0000000..cc2abdd
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-000-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-000.png b/awesome/themes/vertex/icons/bat-000.png
new file mode 100755
index 0000000..550d8f0
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-000.png differ
diff --git a/awesome/themes/vertex/icons/bat-020-charging.png b/awesome/themes/vertex/icons/bat-020-charging.png
new file mode 100755
index 0000000..bd5e788
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-020-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-020.png b/awesome/themes/vertex/icons/bat-020.png
new file mode 100755
index 0000000..c8525eb
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-020.png differ
diff --git a/awesome/themes/vertex/icons/bat-040-charging.png b/awesome/themes/vertex/icons/bat-040-charging.png
new file mode 100755
index 0000000..5d20c11
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-040-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-040.png b/awesome/themes/vertex/icons/bat-040.png
new file mode 100755
index 0000000..ad378bf
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-040.png differ
diff --git a/awesome/themes/vertex/icons/bat-060-charging.png b/awesome/themes/vertex/icons/bat-060-charging.png
new file mode 100755
index 0000000..ea7c293
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-060-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-060.png b/awesome/themes/vertex/icons/bat-060.png
new file mode 100755
index 0000000..5883885
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-060.png differ
diff --git a/awesome/themes/vertex/icons/bat-080-charging.png b/awesome/themes/vertex/icons/bat-080-charging.png
new file mode 100755
index 0000000..b633044
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-080-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-080.png b/awesome/themes/vertex/icons/bat-080.png
new file mode 100755
index 0000000..d3fb971
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-080.png differ
diff --git a/awesome/themes/vertex/icons/bat-100-charging.png b/awesome/themes/vertex/icons/bat-100-charging.png
new file mode 100755
index 0000000..f2d7419
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-100-charging.png differ
diff --git a/awesome/themes/vertex/icons/bat-100.png b/awesome/themes/vertex/icons/bat-100.png
new file mode 100755
index 0000000..5852e69
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-100.png differ
diff --git a/awesome/themes/vertex/icons/bat-charged.png b/awesome/themes/vertex/icons/bat-charged.png
new file mode 100755
index 0000000..bb6b657
Binary files /dev/null and b/awesome/themes/vertex/icons/bat-charged.png differ
diff --git a/awesome/themes/vertex/icons/ethernet-connected.png b/awesome/themes/vertex/icons/ethernet-connected.png
new file mode 100755
index 0000000..6894931
Binary files /dev/null and b/awesome/themes/vertex/icons/ethernet-connected.png differ
diff --git a/awesome/themes/vertex/icons/ethernet-disconnected.png b/awesome/themes/vertex/icons/ethernet-disconnected.png
new file mode 100755
index 0000000..cfd73bb
Binary files /dev/null and b/awesome/themes/vertex/icons/ethernet-disconnected.png differ
diff --git a/awesome/themes/vertex/icons/panel.png b/awesome/themes/vertex/icons/panel.png
new file mode 100755
index 0000000..2f429e5
Binary files /dev/null and b/awesome/themes/vertex/icons/panel.png differ
diff --git a/awesome/themes/vertex/icons/volume-high.png b/awesome/themes/vertex/icons/volume-high.png
new file mode 100755
index 0000000..8fc8279
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-high.png differ
diff --git a/awesome/themes/vertex/icons/volume-low.png b/awesome/themes/vertex/icons/volume-low.png
new file mode 100755
index 0000000..7a0682f
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-low.png differ
diff --git a/awesome/themes/vertex/icons/volume-medium.png b/awesome/themes/vertex/icons/volume-medium.png
new file mode 100755
index 0000000..2b5c888
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-medium.png differ
diff --git a/awesome/themes/vertex/icons/volume-muted-blocked.png b/awesome/themes/vertex/icons/volume-muted-blocked.png
new file mode 100755
index 0000000..6dea15b
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-muted-blocked.png differ
diff --git a/awesome/themes/vertex/icons/volume-muted.png b/awesome/themes/vertex/icons/volume-muted.png
new file mode 100755
index 0000000..7d08ac9
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-muted.png differ
diff --git a/awesome/themes/vertex/icons/volume-off.png b/awesome/themes/vertex/icons/volume-off.png
new file mode 100755
index 0000000..8a6d8c5
Binary files /dev/null and b/awesome/themes/vertex/icons/volume-off.png differ
diff --git a/awesome/themes/vertex/icons/wireless-disconnected.png b/awesome/themes/vertex/icons/wireless-disconnected.png
new file mode 100755
index 0000000..f98d8b4
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-disconnected.png differ
diff --git a/awesome/themes/vertex/icons/wireless-full.png b/awesome/themes/vertex/icons/wireless-full.png
new file mode 100755
index 0000000..3f83dec
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-full.png differ
diff --git a/awesome/themes/vertex/icons/wireless-high.png b/awesome/themes/vertex/icons/wireless-high.png
new file mode 100755
index 0000000..b3622ec
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-high.png differ
diff --git a/awesome/themes/vertex/icons/wireless-low.png b/awesome/themes/vertex/icons/wireless-low.png
new file mode 100755
index 0000000..3f1e740
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-low.png differ
diff --git a/awesome/themes/vertex/icons/wireless-medium.png b/awesome/themes/vertex/icons/wireless-medium.png
new file mode 100755
index 0000000..6bd0ec5
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-medium.png differ
diff --git a/awesome/themes/vertex/icons/wireless-none.png b/awesome/themes/vertex/icons/wireless-none.png
new file mode 100755
index 0000000..e47b478
Binary files /dev/null and b/awesome/themes/vertex/icons/wireless-none.png differ
diff --git a/awesome/themes/vertex/theme.lua b/awesome/themes/vertex/theme.lua
new file mode 100644
index 0000000..4a5bd83
--- /dev/null
+++ b/awesome/themes/vertex/theme.lua
@@ -0,0 +1,470 @@
+--[[
+
+ Vertex Awesome WM theme
+ github.com/lcpz
+
+--]]
+
+local gears = require("gears")
+local lain = require("lain")
+local awful = require("awful")
+local wibox = require("wibox")
+local dpi = require("beautiful.xresources").apply_dpi
+
+local math, string, tag, tonumber, type, os = math, string, tag, tonumber, type, os
+local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
+
+local theme = {}
+theme.default_dir = require("awful.util").get_themes_dir() .. "default"
+theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/vertex/icons"
+theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/vertex/wall.png"
+theme.font = "Roboto Bold 10"
+theme.taglist_font = "FontAwesome 17"
+theme.fg_normal = "#FFFFFF"
+theme.fg_focus = "#6A95EB"
+theme.bg_focus = "#303030"
+theme.bg_focus2 = "#3762B8"
+theme.bg_normal = "#242424"
+theme.fg_urgent = "#CC9393"
+theme.bg_urgent = "#006B8E"
+theme.border_width = dpi(4)
+theme.border_normal = "#252525"
+theme.border_focus = "#7CA2EE"
+theme.tooltip_border_color = theme.fg_focus
+theme.tooltip_border_width = theme.border_width
+theme.menu_height = dpi(24)
+theme.menu_width = dpi(140)
+theme.awesome_icon = theme.icon_dir .. "/awesome.png"
+theme.taglist_squares_sel = gears.surface.load_from_shape(dpi(3), dpi(30), gears.shape.rectangle, theme.fg_focus)
+theme.taglist_squares_unsel = gears.surface.load_from_shape(dpi(3), dpi(30), gears.shape.rectangle, theme.bg_focus2)
+theme.panelbg = theme.icon_dir .. "/panel.png"
+theme.bat000charging = theme.icon_dir .. "/bat-000-charging.png"
+theme.bat000 = theme.icon_dir .. "/bat-000.png"
+theme.bat020charging = theme.icon_dir .. "/bat-020-charging.png"
+theme.bat020 = theme.icon_dir .. "/bat-020.png"
+theme.bat040charging = theme.icon_dir .. "/bat-040-charging.png"
+theme.bat040 = theme.icon_dir .. "/bat-040.png"
+theme.bat060charging = theme.icon_dir .. "/bat-060-charging.png"
+theme.bat060 = theme.icon_dir .. "/bat-060.png"
+theme.bat080charging = theme.icon_dir .. "/bat-080-charging.png"
+theme.bat080 = theme.icon_dir .. "/bat-080.png"
+theme.bat100charging = theme.icon_dir .. "/bat-100-charging.png"
+theme.bat100 = theme.icon_dir .. "/bat-100.png"
+theme.batcharged = theme.icon_dir .. "/bat-charged.png"
+theme.ethon = theme.icon_dir .. "/ethernet-connected.png"
+theme.ethoff = theme.icon_dir .. "/ethernet-disconnected.png"
+theme.volhigh = theme.icon_dir .. "/volume-high.png"
+theme.vollow = theme.icon_dir .. "/volume-low.png"
+theme.volmed = theme.icon_dir .. "/volume-medium.png"
+theme.volmutedblocked = theme.icon_dir .. "/volume-muted-blocked.png"
+theme.volmuted = theme.icon_dir .. "/volume-muted.png"
+theme.voloff = theme.icon_dir .. "/volume-off.png"
+theme.wifidisc = theme.icon_dir .. "/wireless-disconnected.png"
+theme.wififull = theme.icon_dir .. "/wireless-full.png"
+theme.wifihigh = theme.icon_dir .. "/wireless-high.png"
+theme.wifilow = theme.icon_dir .. "/wireless-low.png"
+theme.wifimed = theme.icon_dir .. "/wireless-medium.png"
+theme.wifinone = theme.icon_dir .. "/wireless-none.png"
+theme.layout_fairh = theme.default_dir.."/layouts/fairhw.png"
+theme.layout_fairv = theme.default_dir.."/layouts/fairvw.png"
+theme.layout_floating = theme.default_dir.."/layouts/floatingw.png"
+theme.layout_magnifier = theme.default_dir.."/layouts/magnifierw.png"
+theme.layout_max = theme.default_dir.."/layouts/maxw.png"
+theme.layout_fullscreen = theme.default_dir.."/layouts/fullscreenw.png"
+theme.layout_tilebottom = theme.default_dir.."/layouts/tilebottomw.png"
+theme.layout_tileleft = theme.default_dir.."/layouts/tileleftw.png"
+theme.layout_tile = theme.default_dir.."/layouts/tilew.png"
+theme.layout_tiletop = theme.default_dir.."/layouts/tiletopw.png"
+theme.layout_spiral = theme.default_dir.."/layouts/spiralw.png"
+theme.layout_dwindle = theme.default_dir.."/layouts/dwindlew.png"
+theme.layout_cornernw = theme.default_dir.."/layouts/cornernww.png"
+theme.layout_cornerne = theme.default_dir.."/layouts/cornernew.png"
+theme.layout_cornersw = theme.default_dir.."/layouts/cornersww.png"
+theme.layout_cornerse = theme.default_dir.."/layouts/cornersew.png"
+theme.tasklist_plain_task_name = true
+theme.tasklist_disable_icon = true
+theme.useless_gap = dpi(10)
+theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png"
+theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png"
+theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png"
+theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png"
+theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png"
+theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png"
+theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png"
+theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png"
+theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png"
+theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png"
+theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png"
+theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png"
+theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png"
+theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png"
+theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png"
+theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png"
+theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png"
+theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png"
+theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png"
+theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png"
+
+-- http://fontawesome.io/cheatsheet
+awful.util.tagnames = { "", "", "", "", "", "", "", "" }
+
+local markup = lain.util.markup
+
+-- Clock
+--os.setlocale(os.getenv("LANG")) -- to localize the clock
+local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "%a %d %b, %H:%M"))
+mytextclock.font = theme.font
+theme.cal = lain.widget.cal({
+ attach_to = { mytextclock },
+ notification_preset = {
+ fg = "#FFFFFF",
+ bg = theme.bg_normal,
+ position = "top_middle",
+ font = "Monospace 10"
+ }
+})
+
+-- Battery
+local baticon = wibox.widget.imagebox(theme.bat000)
+local battooltip = awful.tooltip({
+ objects = { baticon },
+ margin_leftright = dpi(15),
+ margin_topbottom = dpi(12)
+})
+battooltip.wibox.fg = theme.fg_normal
+battooltip.textbox.font = theme.font
+battooltip.timeout = 0
+battooltip:set_shape(function(cr, width, height)
+ gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - dpi(35))
+end)
+local bat = lain.widget.bat({
+ settings = function()
+ local index, perc = "bat", tonumber(bat_now.perc) or 0
+
+ if perc <= 7 then
+ index = index .. "000"
+ elseif perc <= 20 then
+ index = index .. "020"
+ elseif perc <= 40 then
+ index = index .. "040"
+ elseif perc <= 60 then
+ index = index .. "060"
+ elseif perc <= 80 then
+ index = index .. "080"
+ elseif perc <= 100 then
+ index = index .. "100"
+ end
+
+ if bat_now.ac_status == 1 then
+ index = index .. "charging"
+ end
+
+ baticon:set_image(theme[index])
+ battooltip:set_markup(string.format("\n%s%%, %s", perc, bat_now.time))
+ end
+})
+
+-- MPD
+theme.mpd = lain.widget.mpd({
+ music_dir = "/mnt/storage/Downloads/Music",
+ settings = function()
+ if mpd_now.state == "play" then
+ title = mpd_now.title
+ artist = " " .. mpd_now.artist .. " "
+ elseif mpd_now.state == "pause" then
+ title = "mpd "
+ artist = "paused "
+ else
+ title = ""
+ artist = ""
+ end
+
+ widget:set_markup(markup.font(theme.font, title .. markup(theme.fg_focus, artist)))
+ end
+})
+
+-- ALSA volume
+local volicon = wibox.widget.imagebox()
+theme.volume = lain.widget.alsabar({
+ --togglechannel = "IEC958,3",
+ notification_preset = { font = "Monospace 12", fg = theme.fg_normal },
+ settings = function()
+ local index, perc = "", tonumber(volume_now.level) or 0
+
+ if volume_now.status == "off" then
+ index = "volmutedblocked"
+ else
+ if perc <= 5 then
+ index = "volmuted"
+ elseif perc <= 25 then
+ index = "vollow"
+ elseif perc <= 75 then
+ index = "volmed"
+ else
+ index = "volhigh"
+ end
+ end
+
+ volicon:set_image(theme[index])
+ end
+})
+volicon:buttons(my_table.join (
+ awful.button({}, 1, function()
+ awful.spawn(string.format("%s -e alsamixer", awful.util.terminal))
+ end),
+ awful.button({}, 2, function()
+ os.execute(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel))
+ theme.volume.notify()
+ end),
+ awful.button({}, 3, function()
+ os.execute(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel))
+ theme.volume.notify()
+ end),
+ awful.button({}, 4, function()
+ os.execute(string.format("%s set %s 1%%+", theme.volume.cmd, theme.volume.channel))
+ theme.volume.notify()
+ end),
+ awful.button({}, 5, function()
+ os.execute(string.format("%s set %s 1%%-", theme.volume.cmd, theme.volume.channel))
+ theme.volume.notify()
+ end)
+))
+
+-- Wifi carrier and signal strength
+local wificon = wibox.widget.imagebox(theme.wifidisc)
+local wifitooltip = awful.tooltip({
+ objects = { wificon },
+ margin_leftright = dpi(15),
+ margin_topbottom = dpi(15)
+})
+wifitooltip.wibox.fg = theme.fg_normal
+wifitooltip.textbox.font = theme.font
+wifitooltip.timeout = 0
+wifitooltip:set_shape(function(cr, width, height)
+ gears.shape.infobubble(cr, width, height, corner_radius, arrow_size, width - dpi(120))
+end)
+local mywifisig = awful.widget.watch(
+ { awful.util.shell, "-c", "awk 'NR==3 {printf(\"%d-%.0f\\n\",$2, $3*10/7)}' /proc/net/wireless; iw dev wlan0 link" },
+ 2,
+ function(widget, stdout)
+ local carrier, perc = stdout:match("(%d)-(%d+)")
+ local tiptext = stdout:gsub("(%d)-(%d+)", ""):gsub("%s+$", "")
+ perc = tonumber(perc)
+
+ if carrier == "1" or not perc then
+ wificon:set_image(theme.wifidisc)
+ wifitooltip:set_markup("No carrier")
+ else
+ if perc <= 5 then
+ wificon:set_image(theme.wifinone)
+ elseif perc <= 25 then
+ wificon:set_image(theme.wifilow)
+ elseif perc <= 50 then
+ wificon:set_image(theme.wifimed)
+ elseif perc <= 75 then
+ wificon:set_image(theme.wifihigh)
+ else
+ wificon:set_image(theme.wififull)
+ end
+ wifitooltip:set_markup(tiptext)
+ end
+ end
+)
+wificon:connect_signal("button::press", function() awful.spawn(string.format("%s -e wavemon", awful.util.terminal)) end)
+
+-- Weather
+--[[ to be set before use
+theme.weather = lain.widget.weather({
+ city_id = 2643743, -- placeholder (London)
+ notification_preset = { font = "Monospace 10" },
+ settings = function()
+ units = math.floor(weather_now["main"]["temp"])
+ widget:set_markup(" " .. markup.font(theme.font, units .. "°C") .. " ")
+ end
+})
+--]]
+
+-- Launcher
+local mylauncher = awful.widget.button({image = theme.awesome_icon})
+mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end)
+
+-- Separators
+local space = wibox.widget.textbox(" ")
+local rspace1 = wibox.widget.textbox()
+local rspace0 = wibox.widget.textbox()
+local rspace2 = wibox.widget.textbox()
+local rspace3 = wibox.widget.textbox()
+local tspace1 = wibox.widget.textbox()
+tspace1.forced_width = dpi(18)
+rspace1.forced_width = dpi(16)
+rspace0.forced_width = dpi(18)
+rspace2.forced_width = dpi(19)
+rspace3.forced_width = dpi(21)
+
+local lspace1 = wibox.widget.textbox()
+local lspace2 = wibox.widget.textbox()
+local lspace3 = wibox.widget.textbox()
+lspace1.forced_height = dpi(18)
+lspace2.forced_height = dpi(10)
+lspace3.forced_height = dpi(16)
+
+local barcolor = gears.color({
+ type = "linear",
+ from = { 0, dpi(46) },
+ to = { dpi(46), dpi(46) },
+ stops = { {0, theme.bg_focus}, {0.9, theme.bg_focus2} }
+})
+
+local barcolor2 = gears.color({
+ type = "linear",
+ from = { 0, dpi(46) },
+ to = { dpi(46), dpi(46) },
+ stops = { {0, "#323232"}, {1, theme.bg_normal} }
+})
+
+local dockshape = function(cr, width, height)
+ gears.shape.partially_rounded_rect(cr, width, height, false, true, true, false, 6)
+end
+
+function theme.vertical_wibox(s)
+ -- Create the vertical wibox
+ s.dockheight = (35 * s.workarea.height)/100
+
+ s.myleftwibox = wibox({ screen = s, x=0, y=s.workarea.height/2 - s.dockheight/2, width = dpi(6), height = s.dockheight, fg = theme.fg_normal, bg = barcolor2, ontop = true, visible = true, type = "dock" })
+
+ if s.index > 1 and s.myleftwibox.y == 0 then
+ s.myleftwibox.y = screen[1].myleftwibox.y
+ end
+
+ -- Add widgets to the vertical wibox
+ s.myleftwibox:setup {
+ layout = wibox.layout.align.vertical,
+ {
+ layout = wibox.layout.fixed.vertical,
+ lspace1,
+ s.mytaglist,
+ lspace2,
+ s.layoutb,
+ wibox.container.margin(mylauncher, dpi(5), dpi(8), dpi(13), dpi(0)),
+ },
+ }
+
+ -- Add toggling functionalities
+ s.docktimer = gears.timer{ timeout = 2 }
+ s.docktimer:connect_signal("timeout", function()
+ local s = awful.screen.focused()
+ s.myleftwibox.width = dpi(9)
+ s.layoutb.visible = false
+ mylauncher.visible = false
+ if s.docktimer.started then
+ s.docktimer:stop()
+ end
+ end)
+ tag.connect_signal("property::selected", function(t)
+ local s = t.screen or awful.screen.focused()
+ s.myleftwibox.width = dpi(38)
+ s.layoutb.visible = true
+ mylauncher.visible = true
+ gears.surface.apply_shape_bounding(s.myleftwibox, dockshape)
+ if not s.docktimer.started then
+ s.docktimer:start()
+ end
+ end)
+
+ s.myleftwibox:connect_signal("mouse::leave", function()
+ local s = awful.screen.focused()
+ s.myleftwibox.width = dpi(9)
+ s.layoutb.visible = false
+ mylauncher.visible = false
+ end)
+
+ s.myleftwibox:connect_signal("mouse::enter", function()
+ local s = awful.screen.focused()
+ s.myleftwibox.width = dpi(38)
+ s.layoutb.visible = true
+ mylauncher.visible = true
+ gears.surface.apply_shape_bounding(s.myleftwibox, dockshape)
+ end)
+end
+
+
+function theme.at_screen_connect(s)
+ -- Quake application
+ s.quake = lain.util.quake({ app = awful.util.terminal, border = theme.border_width })
+
+ -- If wallpaper is a function, call it with the screen
+ local wallpaper = theme.wallpaper
+ if type(wallpaper) == "function" then
+ wallpaper = wallpaper(s)
+ end
+ gears.wallpaper.maximized(wallpaper, s, true)
+
+ -- Tags
+ awful.tag(awful.util.tagnames, s, awful.layout.layouts)
+
+ -- Create a promptbox for each screen
+ s.mypromptbox = awful.widget.prompt()
+ s.mypromptbox.bg = "#00000000"
+
+ -- Create an imagebox widget which will contains an icon indicating which layout we're using.
+ -- We need one layoutbox per screen.
+ s.mylayoutbox = awful.widget.layoutbox(s)
+ s.mylayoutbox:buttons(my_table.join(
+ awful.button({}, 1, function () awful.layout.inc( 1) end),
+ awful.button({}, 2, function () awful.layout.set( awful.layout.layouts[1] ) end),
+ awful.button({}, 3, function () awful.layout.inc(-1) end),
+ awful.button({}, 4, function () awful.layout.inc( 1) end),
+ awful.button({}, 5, function () awful.layout.inc(-1) end)))
+ s.layoutb = wibox.container.margin(s.mylayoutbox, dpi(8), dpi(11), dpi(3), dpi(3))
+
+ -- Create a taglist widget
+ s.mytaglist = awful.widget.taglist(s, awful.widget.taglist.filter.all, awful.util.taglist_buttons, {
+ font = theme.taglist_font,
+ shape = gears.shape.rectangle,
+ spacing = dpi(10),
+ square_unsel = theme.square_unsel,
+ bg_focus = barcolor
+ }, nil, wibox.layout.fixed.vertical())
+
+ -- Create a tasklist widget
+ s.mytasklist = awful.widget.tasklist(s, awful.widget.tasklist.filter.focused, awful.util.tasklist_buttons, { bg_focus = "#00000000" })
+
+ -- Create the wibox
+ s.mywibox = awful.wibar({ position = "top", screen = s, height = dpi(25), bg = gears.color.create_png_pattern(theme.panelbg) })
+
+ -- Add widgets to the wibox
+ s.mywibox:setup {
+ layout = wibox.layout.align.horizontal,
+ expand = "none",
+ { -- Left widgets
+ layout = wibox.layout.fixed.horizontal,
+ s.mypromptbox,
+ tspace1,
+ s.mytasklist,
+ },
+ { -- Middle widgets
+ layout = wibox.layout.flex.horizontal,
+ max_widget_size = 1500,
+ mytextclock
+ },
+ { -- Right widgets
+ layout = wibox.layout.fixed.horizontal,
+ wibox.widget { nil, nil, theme.mpd.widget, layout = wibox.layout.align.horizontal },
+ rspace0,
+ --theme.weather.icon,
+ --theme.weather.widget,
+ rspace1,
+ wificon,
+ rspace0,
+ volicon,
+ rspace2,
+ baticon,
+ rspace3,
+ wibox.widget.systray(),
+ },
+ }
+
+ gears.timer.delayed_call(theme.vertical_wibox, s)
+end
+
+return theme
diff --git a/awesome/themes/vertex/wall.png b/awesome/themes/vertex/wall.png
new file mode 100755
index 0000000..863b1bf
Binary files /dev/null and b/awesome/themes/vertex/wall.png differ