I recently bought a new laptop and installed Ubuntu MATE 18.04.1.
I had two issues with Insync 1.5.2.
The first was that the icon in the indicator bar was perhaps two to three times bigger than it should have been and didn’t fit the box. I resolved this by using the following code from another forum post:
temp=$(mktemp -d)
pushd “$temp”
mkdir 24x24
cp /usr/share/icons/hicolor/48x48/status/insync-* .
for status in $(ls .png); do
convert “$status” -resize 24x24 24x24/"$status"
done
sudo cp 24x24/ /usr/share/icons/hicolor/24x24/status/
sudo gtk-update-icon-cache /usr/share/icons/hicolor
popd
rm -r “$temp”
My second problem and an ongoing one, is that the icons used to indicate status against files in the Caja file manager are also two to three times bigger than they should be.
I have not yet found a solution for this, so any advice would be hugely appreciated.
Many thanks,
Tom