2013-09-13 21:20:22 +02:00
|
|
|
|
--[[
|
2017-09-13 12:34:28 +02:00
|
|
|
|
|
|
|
|
|
Dremora Awesome WM theme 2.0
|
2017-10-07 13:10:43 +02:00
|
|
|
|
github.com/lcpz
|
2017-09-13 12:34:28 +02:00
|
|
|
|
|
2013-09-13 21:20:22 +02:00
|
|
|
|
--]]
|
|
|
|
|
|
2018-02-02 12:17:33 +01:00
|
|
|
|
local gears = require("gears")
|
|
|
|
|
local lain = require("lain")
|
|
|
|
|
local awful = require("awful")
|
|
|
|
|
local wibox = require("wibox")
|
|
|
|
|
|
|
|
|
|
local os = { getenv = os.getenv }
|
|
|
|
|
local my_table = awful.util.table or gears.table -- 4.{0,1} compatibility
|
2017-01-15 13:05:49 +01:00
|
|
|
|
|
2017-01-29 16:36:09 +01:00
|
|
|
|
local theme = {}
|
2017-01-15 13:05:49 +01:00
|
|
|
|
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora"
|
|
|
|
|
theme.wallpaper = theme.dir .. "/wall.png"
|
2017-01-29 16:36:09 +01:00
|
|
|
|
theme.font = "Misc Tamsyn 10.5"
|
2017-01-15 13:05:49 +01:00
|
|
|
|
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 = "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 = 16
|
|
|
|
|
theme.menu_width = 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 = 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"
|
2013-07-06 17:54:28 +02:00
|
|
|
|
|
2017-01-29 16:36:09 +01:00
|
|
|
|
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
|
2018-09-14 21:24:48 +02:00
|
|
|
|
theme.cal = lain.widget.cal({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
attach_to = { mytextclock },
|
|
|
|
|
notification_preset = {
|
|
|
|
|
font = "Misc Tamsyn 11",
|
|
|
|
|
fg = white,
|
|
|
|
|
bg = theme.bg_normal
|
|
|
|
|
}})
|
|
|
|
|
|
|
|
|
|
--[[ Mail IMAP check
|
|
|
|
|
-- commented because it needs to be set before use
|
2017-02-08 14:16:12 +01:00
|
|
|
|
local mail = lain.widget.imap({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
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
|
2017-02-08 14:16:12 +01:00
|
|
|
|
theme.mpd = lain.widget.mpd({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
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
|
2017-02-08 14:16:12 +01:00
|
|
|
|
theme.fs = lain.widget.fs({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
notification_preset = { fg = white, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" },
|
|
|
|
|
settings = function()
|
|
|
|
|
fs_header = ""
|
|
|
|
|
fs_p = ""
|
|
|
|
|
|
2018-02-16 17:56:03 +01:00
|
|
|
|
if fs_now["/home"].percentage >= 90 then
|
2017-01-29 16:36:09 +01:00
|
|
|
|
fs_header = " Hdd "
|
2018-02-16 17:56:03 +01:00
|
|
|
|
fs_p = fs_now["/home"].percentage
|
2017-01-29 16:36:09 +01:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
widget:set_markup(markup.font(theme.font, markup(gray, fs_header) .. markup(white, fs_p)))
|
|
|
|
|
end
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Battery
|
2017-02-08 14:16:12 +01:00
|
|
|
|
local bat = lain.widget.bat({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
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
|
2017-02-08 14:16:12 +01:00
|
|
|
|
theme.volume = lain.widget.alsa({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
--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
|
2017-02-08 14:16:12 +01:00
|
|
|
|
theme.weather = lain.widget.weather({
|
2017-01-29 16:36:09 +01:00
|
|
|
|
city_id = 2643743, -- placeholder (London)
|
|
|
|
|
notification_preset = { fg = white }
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
-- Separators
|
|
|
|
|
local first = wibox.widget.textbox('<span font="Misc Tamsyn 4"> </span>')
|
|
|
|
|
local arrl_pre = separators.arrow_right("alpha", "#1A1A1A")
|
|
|
|
|
local arrl_post = separators.arrow_right("#1A1A1A", "alpha")
|
2017-01-29 16:47:07 +01:00
|
|
|
|
|
2017-01-29 16:36:09 +01:00
|
|
|
|
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
|
2017-03-17 17:23:34 +01:00
|
|
|
|
local wallpaper = theme.wallpaper
|
|
|
|
|
if type(wallpaper) == "function" then
|
|
|
|
|
wallpaper = wallpaper(s)
|
2017-01-29 16:36:09 +01:00
|
|
|
|
end
|
2017-03-17 17:23:34 +01:00
|
|
|
|
gears.wallpaper.maximized(wallpaper, s, true)
|
2017-01-29 16:36:09 +01:00
|
|
|
|
|
|
|
|
|
-- 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)
|
2018-02-02 12:17:33 +01:00
|
|
|
|
s.mylayoutbox:buttons(my_table.join(
|
2017-01-29 16:36:09 +01:00
|
|
|
|
awful.button({ }, 1, function () awful.layout.inc( 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 = 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,
|
|
|
|
|
--mail.widget,
|
|
|
|
|
theme.fs.widget,
|
|
|
|
|
bat.widget,
|
|
|
|
|
theme.volume.widget,
|
|
|
|
|
mytextclock,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
end
|
|
|
|
|
|
2013-07-06 17:54:28 +02:00
|
|
|
|
return theme
|