You are not logged in.
Pages: 1
I want to change the clipman icon in the systray, but the icon I find under clipman is not what is displayed in the systray.
How can I find out what kind of icon is being used?
Offline
Assuming the latest version of xfce4-clipman plugin, and from https://gitlab.xfce.org/panel-plugins/x … heads#L108:
/* Status Icon */
if (gtk_icon_theme_has_icon (gtk_icon_theme_get_default (), "clipman"))
{
plugin->status_icon = gtk_status_icon_new_from_icon_name ("clipman");
}
else
{
plugin->status_icon = gtk_status_icon_new_from_icon_name ("edit-paste");
}
Looks like it uses the "clipman" icon from your current icon theme, and if that does not exist, then it uses the "edit-paste" icon.
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Pages: 1
[ Generated in 0.013 seconds, 7 queries executed - Memory usage: 517.76 KiB (Peak: 529.14 KiB) ]