X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/10937c0d4b516e964e8b0cdf1f7026aed058e8b6..7f02d7982d2a309c1b707bb3b03ba88c7698ad90:/awesome/themes/nord/theme.lua diff --git a/awesome/themes/nord/theme.lua b/awesome/themes/nord/theme.lua index b90cc14..06c9205 100644 --- a/awesome/themes/nord/theme.lua +++ b/awesome/themes/nord/theme.lua @@ -50,6 +50,8 @@ theme.border_marked = theme.nord14 theme.tooltip_fg = theme.fg_normal theme.tooltip_bg = theme.bg_normal +theme.wibar_height = dpi(20) + -- There are other variable sets -- overriding the default one when -- defined, the sets are: @@ -63,8 +65,41 @@ theme.tooltip_bg = theme.bg_normal -- Example: theme.taglist_bg_focus = theme.nord3 --- TODO icons -theme.taglist_icon_only = false +theme.taglist_icon_only = true +theme.taglist_icon_01 = theme_path.."/runi/A.svg" +theme.taglist_icon_02 = theme_path.."/runi/B.svg" +theme.taglist_icon_03 = theme_path.."/runi/C.svg" +theme.taglist_icon_04 = theme_path.."/runi/D.svg" +theme.taglist_icon_05 = theme_path.."/runi/E.svg" +theme.taglist_icon_06 = theme_path.."/runi/F.svg" +theme.taglist_icon_07 = theme_path.."/runi/G.svg" +theme.taglist_icon_08 = theme_path.."/runi/H.svg" +theme.taglist_icon_09 = theme_path.."/runi/I.svg" +theme.taglist_icon_10 = theme_path.."/runi/J.svg" +theme.taglist_icon_11 = theme_path.."/runi/K.svg" +theme.taglist_icon_12 = theme_path.."/runi/L.svg" +theme.taglist_icon_13 = theme_path.."/runi/Y.svg" -- M is not great +theme.taglist_icon_14 = theme_path.."/runi/N.svg" +theme.taglist_icon_15 = theme_path.."/runi/O.svg" +theme.taglist_icon_16 = theme_path.."/runi/P.svg" +theme.taglist_icon_17 = theme_path.."/runi/R.svg" +theme.taglist_icon_18 = theme_path.."/runi/S.svg" +theme.taglist_icon_19 = theme_path.."/runi/T.svg" +theme.taglist_icon_20 = theme_path.."/runi/U.svg" +theme.taglist_icon_21 = theme_path.."/runi/V.svg" +theme.taglist_icon_22 = theme_path.."/runi/W.svg" +theme.taglist_icon_23 = theme_path.."/runi/Y.svg" +theme.taglist_icon_24 = theme_path.."/runi/Z.svg" + +local recolor_image = require("gears.color").recolor_image +for i=0,24 do + local name = 'taglist_icon_'..string.format('%02d', i) + print(name) + local image = theme[name] + if image then + theme[name] = recolor_image(image, theme.nord4) + end +end -- Display the taglist squares local taglist_square_size = dpi(4)