Forum Discussion
Former Member
3 years agoI had this exact same issue. Ended up being because the .config directory in my home folder was owned by root rather than me.
Confirm by running ls -la ~ | grep .config
Mine was:
drwxr-xr-x 4 root staff 128 Jul 27 22:54 .config
This means that directory is owned by root
and grouped to staff
To resolve:
sudo chown username ~/.config
where "username" is your actual username. You can find that by running the command whoami