Created attachment 5122 Screenshot The XFCE Clipboard uses the generic "copy" icon (same as EDIT > COPY apps option) and this may cause some visualization problems when usin hybrid gtk themes or themes with dark background pannels. Some icon themes who has hybrid and dark background pannel support uses dark icons to menu and button actions and white icons for pannel. So all looks great!. But if you use the "copy" icon (who is black on these themes) as a pannel icon (where pannel backgroun is dark too) the XFCE Clipboard icon does not visualize well (is black over a dark pannel). So, I think there are 2 posible solution: 1 - Allow user manually select the icon (via preferences). 2 - Try to load a xfce-clipboard icon and if not found, then, load the "copy" one. Please consider this problem and these solutions. ;) Thanks for your work! jEsuSdA 8)
it already has a custom icon name, clipman, and falls back to the stock icon when unavailable 8<====================== if (gtk_icon_theme_has_icon (icon_theme, "clipman")) { plugin->image = xfce_panel_image_new_from_source ("clipman"); } else { plugin->image = xfce_panel_image_new_from_source (GTK_STOCK_PASTE); } ======================>8 you can place a custom icon inside ~/.icons/hicolor/ named clipman.png
Thank you! It is a great solution! ;)