I want to reset Florence and Onboard by removing all the configuration files being stored in user home folder.
Hello,
I don’t know what florence is and I haven’t had “onboard” installed for years, but when I find myself in a similar situation, I use the find command. Open a command terminal and make sure you are in your home diretory:
Example:
charles@orca$
charles@orca$ pwd
/home/charles
charles@orca$ find . -maxdepth 1 -type d -iname "*software*"
./Software
./gnome-software
charles@orca$
Replace software with “florance” or “onboard”. You may need to replace “1” with “2”, or even “3”, to find stuff that may be stored in “.config/XXX” “.local/share/XXX”. At any rate, finding the files you are looking for should not be difficult.
Cheers!