+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