Como mencionado aqui: Ícone da bandeja do sistema no xfce | answers.microsoft.com , - houve o mesmo problema no Fedora 28 com a área de trabalho do GNOME.
The electron framework appears to have issues with upscaling the tray image, but does not seem to have a problem with downscaling the image. So an alternative work-around for the current situation is to replace the small (16px) images with larger versions - and I suspect that even without this issue, in most cases, downscaling a 256px icon to (arbitrary) target tray size will look nicer than upscaling the extra small icons.
Until this is fixed in electron or worked around in skype by using larger icons by default, you can work around it yourself. To do so, one needs to unpack /usr/share/skypeforlinux/resources/app.asar (using electron asar tool), replace the images in /app/images/tray/linux/, and pack it back. The tray icons are already provided in two versions, 16px and 32px (HiDPI, @2x name suffix). So if your tray size does not exceed 32px, you can simply copy the 32px versions over 16px ones.
Solução por etapas:
-
Instalar soft necessário
$ sudo yum install npm $ sudo npm install -g asar
-
Descompacte
app.asar
$ asar extract /usr/share/skypeforlinux/resources/app.asar ./skypeapp
-
Substitua ícones menores por grandes
-
Reembale
app.asar
e substitua o anterior$ asar pack ./skypeapp ./app.asar $ sudo cp ./app.asar /usr/share/skypeforlinux/resources/app.asar