1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2026-03-23 05:55:12 +00:00

changed vertical sidebar font icons

This commit is contained in:
Toma Adrian Ionut 2022-11-23 17:33:35 +02:00
parent 7e8812e7ec
commit 3a9b8ba038

View file

@ -18,7 +18,7 @@ theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/vertex/icons"
theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/vertex/wall.png" theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/vertex/wall.png"
-- theme.font = "Roboto Bold 10" -- theme.font = "Roboto Bold 10"
theme.font = "JetBrainsMono Nerd Font Bold 12" theme.font = "JetBrainsMono Nerd Font Bold 12"
theme.taglist_font = "FontAwesome 17" theme.taglist_font = "JetBrainsMono Nerd Font Bold 17"
theme.fg_normal = "#FFFFFF" theme.fg_normal = "#FFFFFF"
theme.fg_focus = "#6A95EB" theme.fg_focus = "#6A95EB"
theme.bg_focus = "#303030" theme.bg_focus = "#303030"
@ -115,7 +115,7 @@ local markup = lain.util.markup
-- Clock -- Clock
-- os.setlocale(os.getenv("LANG")) -- to localize the clock -- os.setlocale(os.getenv("LANG")) -- to localize the clock
-- local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "| %a %d %b | %H:%M |")) -- local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "| %a %d %b | %H:%M |"))
local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "| %H:%M |")) local mytextclock = wibox.widget.textclock(markup("#FFFFFF", "%H:%M"))
mytextclock.font = theme.font mytextclock.font = theme.font
theme.cal = lain.widget.cal({ theme.cal = lain.widget.cal({
attach_to = {mytextclock}, attach_to = {mytextclock},
@ -250,7 +250,7 @@ end), awful.button({}, 5, function()
end))) end)))
-- MEM -- MEM
local function round_one_decimal(num) function round_one_decimal(num)
return math.floor(num * 10) / 10 return math.floor(num * 10) / 10
end end