3
It's good that Dropbox shows its blue icon to indicate a file is currently getting sync'ed ... however the big green check-marks which are shown to indicate the file has finished its sync are entirely unnecessary and obstructive especially since they are shown in perpetuity
I am on Ubuntu and following technique will temporarily remove the green checkmarks simply by removing the offending Dropbox green check-mark file
cd ~/.dropbox-dist/dropbox-lnx.x86_64-23.3.16/images/emblems
mv emblem-dropbox-uptodate.icon emblem-dropbox-uptodate.icon~ignore
mv emblem-dropbox-uptodate.png emblem-dropbox-uptodate.png~ignore
This is a temporary fix since checkmarks will reappear upon the next Dropbox app update which are frequent.
Does anyone know how to disable these green check marks?
As a band-aid, until the root cause is fixed, I execute this bash script to make the offending green checkmark image files go away
#!/bin/bash
# remove Dropbox green checkmark files if they exist
cd ~/.dropbox-dist/dropbox-*/images/emblems/
green_icon=emblem-dropbox-uptodate.icon
green_png=emblem-dropbox-uptodate.png
[[ -f "${green_icon}" ]] && mv "${green_icon}" "${green_icon}"~ignore
[[ -f "${green_png}" ]] && mv "${green_png}" "${green_png}"~ignore
2Failing a better answer you could put your mv commands in a shell script and have it run on boot or something or at least be a desktop shortcut that you can easily run after an update. – Jason C – 2017-04-05T12:58:26.497