Awesome configs for Ben.

This commit is contained in:
Derek Taylor
2023-04-05 15:14:45 -05:00
parent 35649f7090
commit 0dea2e744f

View File

@@ -127,7 +127,7 @@ local mail = lain.widget.imap({
count = "" count = ""
if mailcount > 0 then if mailcount > 0 then
mail = "<span font='Tamzen 5'> </span>Mail " mail = "<span font='Droid Sans 5'> </span>Mail "
count = mailcount .. " " count = mailcount .. " "
end end
@@ -142,11 +142,11 @@ theme.mpd = lain.widget.mpd({
settings = function() settings = function()
if mpd_now.state == "play" then if mpd_now.state == "play" then
title = mpd_now.title title = mpd_now.title
artist = " " .. mpd_now.artist .. markup("#333333", " <span font='Tamzen 2'> </span>|<span font='Tamzen 5'> </span>") artist = " " .. mpd_now.artist .. markup("#333333", " <span font='Droid Sans 2'> </span>|<span font='Droid Sans 5'> </span>")
mpdicon:set_image(theme.play) mpdicon:set_image(theme.play)
elseif mpd_now.state == "pause" then elseif mpd_now.state == "pause" then
title = "mpd " title = "mpd "
artist = "paused" .. markup("#333333", " |<span font='Tamzen 5'> </span>") artist = "paused" .. markup("#333333", " |<span font='Droid Sans 5'> </span>")
mpdicon:set_image(theme.pause) mpdicon:set_image(theme.pause)
else else
title = "" title = ""
@@ -225,7 +225,7 @@ local batwidget = wibox.container.margin(batbg, 2, 7, 4, 4)
-- partition = "/home", -- partition = "/home",
---- partition = "/", ---- partition = "/",
-- options = "--exclude-type=tmpfs", -- options = "--exclude-type=tmpfs",
-- notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Tamzen 10.5" }, -- notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Droid Sans 10.5" },
-- settings = function() -- settings = function()
-- if tonumber(fs_now.used) < 90 then -- if tonumber(fs_now.used) < 90 then
-- fsbar:set_color(theme.fg_normal) -- fsbar:set_color(theme.fg_normal)
@@ -293,10 +293,10 @@ theme.weather = lain.widget.weather({
}) })
-- Separators -- Separators
local first = wibox.widget.textbox(markup.font("Tamzen 3", " ")) local first = wibox.widget.textbox(markup.font("Droid Sans 3", " "))
local spr = wibox.widget.textbox(' ') local spr = wibox.widget.textbox(' ')
local small_spr = wibox.widget.textbox(markup.font("Tamzen 4", " ")) local small_spr = wibox.widget.textbox(markup.font("Droid Sans 4", " "))
local bar_spr = wibox.widget.textbox(markup.font("Tamzen 3", " ") .. markup.fontfg(theme.font, "#333333", "|") .. markup.font("Tamzen 5", " ")) local bar_spr = wibox.widget.textbox(markup.font("Droid Sans 3", " ") .. markup.fontfg(theme.font, "#333333", "|") .. markup.font("Droid Sans 5", " "))
-- Eminent-like task filtering -- Eminent-like task filtering
local orig_filter = awful.widget.taglist.filter.all local orig_filter = awful.widget.taglist.filter.all