Gnome uses symbolic icons in some cases: * https://developer.gnome.org/hig/guidelines/ui-icons.html * https://wiki.gnome.org/Design/OS/SymbolicIcons
You can see existing icons in: * /usr/share/icons/hicolor/symbolic/apps Thus, it will be nice to make doicon support that. Closes: https://github.com/gentoo/gentoo/pull/25966 Signed-Off-By: Alexey Zapparov <[email protected]> --- eclass/desktop.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/desktop.eclass b/eclass/desktop.eclass index 82e764e2a1a..de912bb8093 100644 --- a/eclass/desktop.eclass +++ b/eclass/desktop.eclass @@ -308,7 +308,7 @@ _iconins() { case ${size} in 16|22|24|32|36|48|64|72|96|128|192|256|512) size=${size}x${size};; - scalable) + symbolic|scalable) ;; *) eerror "${size} is an unsupported icon size!" -- 2.35.1
