mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 03:50:24 +10:00
Awesome configs for Ben.
This commit is contained in:
397
.config/awesome/themes/msjche/theme.lua
Normal file
397
.config/awesome/themes/msjche/theme.lua
Normal file
@@ -0,0 +1,397 @@
|
||||
--[[
|
||||
|
||||
Copland Awesome WM theme 2.0
|
||||
github.com/copycat-killer
|
||||
|
||||
--]]
|
||||
|
||||
local gears = require("gears")
|
||||
local lain = require("lain")
|
||||
local awful = require("awful")
|
||||
local wibox = require("wibox")
|
||||
local os = { getenv = os.getenv, setlocale = os.setlocale }
|
||||
local awesome, client = awesome, client
|
||||
local gpmdp = require("widgets.gpmdp")
|
||||
|
||||
local theme = {}
|
||||
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/msjche"
|
||||
theme.wallpaper = theme.dir .. "/wall.png"
|
||||
theme.font = "Droid Sans 14"
|
||||
theme.taglist_font = "Xirod 17"
|
||||
theme.fg_normal = "#757575"
|
||||
theme.fg_focus = "#7A5ADA"
|
||||
theme.bg_normal = "#111111"
|
||||
theme.bg_normal = "#11111199"
|
||||
theme.bg_focus = "#11111110"
|
||||
theme.fg_urgent = "#000000"
|
||||
theme.bg_urgent = "#FFFFFF"
|
||||
theme.border_width = 1
|
||||
theme.border_normal = "#141414"
|
||||
--theme.border_focus = "#93B6FF"
|
||||
theme.border_focus = "#7A5ADA"
|
||||
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 = 25
|
||||
theme.menu_width = 250
|
||||
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"
|
||||
local white = theme.fg_normal
|
||||
|
||||
local mytextclock = wibox.widget.textclock(markup(blue, " %a") .. markup(white, " %d ") .. markup(blue, "%b ") .. markup(white, "%H:%M "))
|
||||
mytextclock.font = theme.font
|
||||
|
||||
--uptimewidget = wibox.widget.textbox()
|
||||
--vicious.register(uptimewidget, vicious.widgeet.uptime, (markup(blue, "$1") .. markup(white, " D") .. markup(blue, " $2") .. markup(white, " h"))
|
||||
|
||||
-- Calendar
|
||||
lain.widget.calendar({
|
||||
attach_to = { mytextclock },
|
||||
notification_preset = {
|
||||
font = "Droid Sans Mono 13",
|
||||
fg = white,
|
||||
bg = theme.bg_normal
|
||||
}})
|
||||
|
||||
-- Launcher
|
||||
local mylauncher = awful.widget.button({image = theme.awesome_icon})
|
||||
mylauncher:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end)
|
||||
-- local mylauncher2 = awful.widget.button({image = theme.awesome_icon})
|
||||
-- mylauncher2:connect_signal("button::press", function() awful.util.mymainmenu:toggle() end)
|
||||
|
||||
--[[ Mail IMAP check
|
||||
-- commented because it needs to be set before use
|
||||
local mail = lain.widget.imap({
|
||||
timeout = 180,
|
||||
server = "server",
|
||||
mail = "mail",
|
||||
password = "keyring get mail",
|
||||
settings = function()
|
||||
mail = ""
|
||||
count = ""
|
||||
|
||||
if mailcount > 0 then
|
||||
mail = "<span font='Tamzen 5'> </span>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("#333333", " <span font='Tamzen 2'> </span>|<span font='Tamzen 5'> </span>")
|
||||
mpdicon:set_image(theme.play)
|
||||
elseif mpd_now.state == "pause" then
|
||||
title = "mpd "
|
||||
artist = "paused" .. markup("#333333", " |<span font='Tamzen 5'> </span>")
|
||||
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 = 1,
|
||||
forced_width = 143,
|
||||
color = theme.fg_normal,
|
||||
background_color = theme.bg_normal,
|
||||
margins = 1,
|
||||
paddings = 1,
|
||||
ticks = true,
|
||||
ticks_size = 13,
|
||||
widget = wibox.widget.progressbar,
|
||||
}
|
||||
local batupd = lain.widget.bat({
|
||||
settings = function()
|
||||
if 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, 2, 7, 4, 4)
|
||||
|
||||
---- / fs
|
||||
--local fsicon = wibox.widget.imagebox(theme.disk)
|
||||
--local fsbar = wibox.widget {
|
||||
-- forced_height = 1,
|
||||
-- forced_width = 143,
|
||||
-- color = theme.fg_normal,
|
||||
-- background_color = theme.bg_normal,
|
||||
-- margins = 1,
|
||||
-- paddings = 1,
|
||||
-- ticks = true,
|
||||
-- ticks_size = 13,
|
||||
-- widget = wibox.widget.progressbar,
|
||||
--}
|
||||
--theme.fs = lain.widget.fs({
|
||||
-- partition = "/home",
|
||||
---- partition = "/",
|
||||
-- options = "--exclude-type=tmpfs",
|
||||
-- notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Tamzen 10.5" },
|
||||
-- settings = function()
|
||||
-- if tonumber(fs_now.used) < 90 then
|
||||
-- fsbar:set_color(theme.fg_normal)
|
||||
-- else
|
||||
-- fsbar:set_color("#EB8F8F")
|
||||
-- end
|
||||
-- fsbar:set_value(fs_now.used / 100)
|
||||
-- end
|
||||
--})
|
||||
--local fsbg = wibox.container.background(fsbar, "#474747", gears.shape.rectangle)
|
||||
--local fswidget = wibox.container.margin(fsbg, 2, 7, 4, 4)
|
||||
|
||||
-- ALSA volume bar
|
||||
local volicon = wibox.widget.imagebox(theme.vol)
|
||||
theme.volume = lain.widget.alsabar({
|
||||
width = 143, border_width = 0, ticks = true, ticks_size = 13,
|
||||
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(awful.util.table.join (
|
||||
awful.button({}, 1, function()
|
||||
awful.spawn.with_shell(string.format("%s -e alsamixer", awful.util.terminal))
|
||||
end),
|
||||
awful.button({}, 2, function()
|
||||
awful.spawn(string.format("%s set %s 100%%", theme.volume.cmd, theme.volume.channel))
|
||||
theme.volume.update()
|
||||
end),
|
||||
awful.button({}, 3, function()
|
||||
awful.spawn(string.format("%s set %s toggle", theme.volume.cmd, theme.volume.togglechannel or theme.volume.channel))
|
||||
theme.volume.update()
|
||||
end),
|
||||
awful.button({}, 4, function()
|
||||
awful.spawn(string.format("%s set %s 2%%+", theme.volume.cmd, theme.volume.channel))
|
||||
theme.volume.update()
|
||||
end),
|
||||
awful.button({}, 5, function()
|
||||
awful.spawn(string.format("%s set %s 2%%-", 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, 2, 7, 4, 4)
|
||||
|
||||
-- Weather
|
||||
theme.weather = lain.widget.weather({
|
||||
--city_id = 2643743, -- placeholder (London)
|
||||
city_id = 5570160, -- placeholder (not London)
|
||||
})
|
||||
|
||||
-- Separators
|
||||
local first = wibox.widget.textbox(markup.font("Tamzen 3", " "))
|
||||
local spr = wibox.widget.textbox(' ')
|
||||
local small_spr = wibox.widget.textbox(markup.font("Tamzen 4", " "))
|
||||
local bar_spr = wibox.widget.textbox(markup.font("Tamzen 3", " ") .. markup.fontfg(theme.font, "#333333", "|") .. markup.font("Tamzen 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)
|
||||
|
||||
-- Tag names and layouts
|
||||
--awful.tag(awful.util.tagnames, s, awful.layout.layouts)
|
||||
local names = { "1-WEB", "2-POR", "3-NEW", "4-IRC", "5-MUS", "6-PIR", "7-MOV", "8-GAM", "9-MIS" }
|
||||
local l = awful.layout.suit
|
||||
local layouts = { l.max, l.fair.horizontal, l.spiral, l.corner.se, l.tile.bottom, l.corner.se, l.magnifier, l.floating, l.floating, }
|
||||
awful.tag(names, s, 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(awful.util.table.join(
|
||||
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 horizontal wibox
|
||||
s.mywibox = awful.wibar({ position = "top", screen = s, height = 28, bg = theme.bg_normal, fg = theme.fg_normal })
|
||||
|
||||
-- Add widgets to the wibox
|
||||
s.mywibox:setup {
|
||||
{ -- Top widgets
|
||||
layout = wibox.layout.fixed.vertical,
|
||||
mylauncher,
|
||||
},
|
||||
|
||||
layout = wibox.layout.align.horizontal,
|
||||
{ -- Left widgets
|
||||
layout = wibox.layout.fixed.horizontal,
|
||||
small_spr,
|
||||
s.mylayoutbox,
|
||||
first,
|
||||
bar_spr,
|
||||
s.mytaglist,
|
||||
bar_spr,
|
||||
first,
|
||||
s.mypromptbox,
|
||||
},
|
||||
s.mytasklist, -- Middle widget
|
||||
{ -- Right widgets
|
||||
layout = wibox.layout.fixed.horizontal,
|
||||
bar_spr,
|
||||
wibox.widget.systray(),
|
||||
bar_spr,
|
||||
--mail.widget,
|
||||
-- brightness.widget,
|
||||
gpmdp.widget,
|
||||
mpdicon,
|
||||
theme.mpd.widget,
|
||||
baticon,
|
||||
batwidget,
|
||||
--bar_spr,
|
||||
--fsicon,
|
||||
--fswidget,
|
||||
bar_spr,
|
||||
volicon,
|
||||
volumewidget,
|
||||
bar_spr,
|
||||
mytextclock,
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
end
|
||||
|
||||
return theme
|
||||
Reference in New Issue
Block a user