summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKent Smith <kentsmith@gmail.com>2019-07-15 10:43:56 -0600
committerKent Smith <kentsmith@gmail.com>2019-07-15 10:43:56 -0600
commit0359d2aaafc564bb9c1c6137f6f31913ce004eab (patch)
tree5820e6c98ae7d2bb7d9aae59f0bc71a08a67ae11
parente842a2775d357a7eeffbd742b3285bc3420d9049 (diff)
downloadcfg-0359d2aaafc564bb9c1c6137f6f31913ce004eab.tar.gz
cfg-0359d2aaafc564bb9c1c6137f6f31913ce004eab.tar.bz2
comment out unused widgets and change font
-rw-r--r--.config/awesome/themes/copland/theme-personal.lua34
1 files changed, 17 insertions, 17 deletions
diff --git a/.config/awesome/themes/copland/theme-personal.lua b/.config/awesome/themes/copland/theme-personal.lua
index 22553a2..c63bc7d 100644
--- a/.config/awesome/themes/copland/theme-personal.lua
+++ b/.config/awesome/themes/copland/theme-personal.lua
@@ -95,14 +95,14 @@ local green = "#8FEB8F"
-- Textclock
--os.setlocale(os.getenv("LANG")) -- to localize the clock
-local mytextclock = wibox.widget.textclock("<span font='Iosevka 10'> </span>%H:%M %a %d")
+local mytextclock = wibox.widget.textclock("<span font='Iosevka 10'> </span>%I:%M %a %d")
mytextclock.font = theme.font
-- Calendar
theme.cal = lain.widget.cal({
attach_to = { mytextclock },
notification_preset = {
- font = "Misc Tamsyn 11",
+ font = "Iosevka 11",
fg = theme.fg_normal,
bg = theme.bg_normal
}
@@ -120,7 +120,7 @@ theme.mail = lain.widget.imap({
count = ""
if mailcount > 0 then
- mail = "<span font='Misc Tamsyn 5'> </span>Mail "
+ mail = "<span font='Iosevka 5'> </span>Mail "
count = mailcount .. " "
end
@@ -135,11 +135,11 @@ theme.mpd = lain.widget.mpd({
settings = function()
if mpd_now.state == "play" then
title = mpd_now.title
- artist = " " .. mpd_now.artist .. markup("#777777", " <span font='Misc Tamsyn 2'> </span>|<span font='Misc Tamsyn 5'> </span>")
+ artist = " " .. mpd_now.artist .. markup("#777777", " <span font='Iosevka 2'> </span>|<span font='Iosevka 5'> </span>")
mpdicon:set_image(theme.play)
elseif mpd_now.state == "pause" then
title = "mpd "
- artist = "paused" .. markup("#777777", " |<span font='Misc Tamsyn 5'> </span>")
+ artist = "paused" .. markup("#777777", " |<span font='Iosevka 5'> </span>")
mpdicon:set_image(theme.pause)
else
title = ""
@@ -216,7 +216,7 @@ local fsbar = wibox.widget {
widget = wibox.widget.progressbar,
}
theme.fs = lain.widget.fs {
- notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Misc Tamsyn 10.5" },
+ notification_preset = { fg = theme.fg_normal, bg = theme.bg_normal, font = "Iosevka 10.5" },
settings = function()
if fs_now["/home"].percentage < 90 then
fsbar:set_color(theme.fg_normal)
@@ -284,10 +284,10 @@ theme.weather = lain.widget.weather({
})
-- Separators
-local first = wibox.widget.textbox(markup.font("Misc Tamsyn 3", " "))
+local first = wibox.widget.textbox(markup.font("Iosevka 3", " "))
local spr = wibox.widget.textbox(' ')
-local small_spr = wibox.widget.textbox(markup.font("Misc Tamsyn 4", " "))
-local bar_spr = wibox.widget.textbox(markup.font("Misc Tamsyn 3", " ") .. markup.fontfg(theme.font, "#777777", "|") .. markup.font("Misc Tamsyn 5", " "))
+local small_spr = wibox.widget.textbox(markup.font("Iosevka 4", " "))
+local bar_spr = wibox.widget.textbox(markup.font("Iosevka 3", " ") .. markup.fontfg(theme.font, "#777777", "|") .. markup.font("Iosevka 5", " "))
-- Eminent-like task filtering
local orig_filter = awful.widget.taglist.filter.all
@@ -353,16 +353,16 @@ function theme.at_screen_connect(s)
wibox.widget.systray(),
small_spr,
--theme.mail.widget,
- mpdicon,
- theme.mpd.widget,
- baticon,
- batwidget,
- bar_spr,
+ --mpdicon,
+ --theme.mpd.widget,
+ --baticon,
+ --batwidget,
+ --bar_spr,
--fsicon,
--fswidget,
- bar_spr,
- volicon,
- volumewidget,
+ --bar_spr,
+ --volicon,
+ --volumewidget,
bar_spr,
mytextclock,
},