Fixing errors and adding appropriate fonts that DTOS uses.

This commit is contained in:
Derek Taylor 2022-07-14 09:04:40 -05:00
parent 6102a1be67
commit 07b52578d4
1 changed files with 4 additions and 4 deletions

View File

@ -14,10 +14,10 @@ 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-blue"
theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow"
--theme.wallpaper = theme.dir .. "/starwars.jpg"
theme.font = "Mononoki Nerd Font 9"
theme.taglist_font = "Droid Sans Bold 7"
theme.font = "JetBrains Mono 9"
theme.taglist_font = "Ubuntu Bold 7"
theme.fg_normal = "#ffffff"
theme.fg_focus = "#A77AC4"
theme.fg_urgent = "#b74822"
@ -115,7 +115,7 @@ local clock = awful.widget.watch(
theme.cal = lain.widget.cal({
attach_to = { clock },
notification_preset = {
font = "Mononoki Nerd Font 11",
font = "JetBrains Mono 11",
fg = theme.fg_normal,
bg = theme.bg_normal
}