Background: I cannot figure out how to make Rhythmbox scan ONLY the folder with my music in it. I want to delete all of its settings and start over.
What do I have to do to make Rhythmbox think it's never been run before?
Background: I cannot figure out how to make Rhythmbox scan ONLY the folder with my music in it. I want to delete all of its settings and start over.
What do I have to do to make Rhythmbox think it's never been run before?
Remove these folders:
~/.local/share/rhythmbox
~/.cache/rhythmbox
~/.gconf/apps/rhythmbox
.You can use your file browser to do this or run this command from the terminal:
rm ~/.local/share/rhythmbox/ ~/.cache/rhythmbox/ ~/.gconf/apps/rhythmbox/ -r
In recent versions I had to do this to reset gsetting keys (there was no ~/.gconf/apps/rhythmbox
)
gsettings reset-recursively org.gnome.rhythmbox
gsettings reset-recursively org.gnome.rhythmbox.display-page-tree
gsettings reset-recursively org.gnome.rhythmbox.library
gsettings reset-recursively org.gnome.rhythmbox.player
gsettings reset-recursively org.gnome.rhythmbox.plugins
gsettings reset-recursively org.gnome.rhythmbox.plugins.iradio
gsettings reset-recursively org.gnome.rhythmbox.plugins.lyrics
gsettings reset-recursively org.gnome.rhythmbox.plugins.magnatune
gsettings reset-recursively org.gnome.rhythmbox.plugins.replaygain
gsettings reset-recursively org.gnome.rhythmbox.plugins.visualizer
gsettings reset-recursively org.gnome.rhythmbox.podcast
gsettings reset-recursively org.gnome.rhythmbox.podcast
gsettings reset-recursively org.gnome.rhythmbox.rhythmdb
gsettings reset-recursively org.gnome.rhythmbox.sharing
gsettings reset-recursively org.gnome.rhythmbox.sources
gsettings reset-recursively org.gnome.rhythmbox.plugins.alternative_toolbar
– AtomX Oct 27 '20 at 10:04dconf-editor
, navigate toorg.gnome.rhythmbox
and select the option "Reset view recursively" – myQwil Mar 02 '22 at 21:22