I enjoy pretty much detaching moc from the server and quickly popping up the gui via a keyboard shortcut. I mainly do this for a quick change of the song to be played by navigating and selecting songs in the playlist menu. However everytime I startup the interface the directory menu is focused, which is very inconvenient, because I have to press TAB to focus the playlist.
Long story short: When I start the gui I want to see the playlist and only the playlist. I want to see the directory only after switching to a different layout or after pressing TAB.
I tried the following for my ~/.moc/config:
Switching the order of "directory" and "playlist" menus in the layout string:
Layout1 = playlist(0,0,100%,100%):directory(0,0,100%,100%)
-- no effect
Configuring only directory
Layout1 = directory(50%,50%,50%,50%)
-- no effect
Trying to hide directory completely via
Layout1 = directory(0,0,0,0)
makes moc fail to start up, because of malformed layout.
Any pointers? Thanks!