So there isn’t a .config file for CMUS. But there is a cmus folder within my system’s ~/.config folder. This ~/.config/cmus folder contains:
├── autosave
├── cache
├── command-history
├── lib.pl
├── playlists
│ ├── Aggressive alectro
│ ...
├── search-history
└── update-library.shI was looking for a .config file so I could add it to my post-linux-intstall-script. Turns out autosave serves the function of a .config file. It just contains a list of commands that run every time CMUS starts. It’s a pretty long list:
set aaa_mode=all
set altformat_current= %F
set altformat_playlist= %f%= %d
set altformat_title=%f
set altformat_trackwin= %f%= %d
set auto_expand_albums_follow=true
...
fset ogg-or-mp3=ogg|mp3
fset unheard=play_count=0
factivateThis looks like a decent place to create fset rules for playlists and other bindings. I’ll have to take a look into this file a bit more.