My Perfect Roon Core/Bridge

QuteBrowser parameters were updated:

statusbar.hide has been renamed to statusbar.show with the possible values being always (hide = False), never (hide = True) or in-mode

So you need to update /home/roon/.config/qutebrowser/config.py to:

# QuteBrowser Config file for Kiosk mode

config.load_autoconfig(False)

## Hide the statusbar unless a message is shown.
## Type: Bool
#c.statusbar.hide = True
c.statusbar.show = 'never'


## When to show the tab bar.
## Type: String
## Valid values:
##   - always: Always show the tab bar.
##   - never: Always hide the tab bar.
##   - multiple: Hide the tab bar if only one tab is open.
##   - switching: Show the tab bar when switching tabs.
c.tabs.show = 'multiple'

## Page to open if :open -t/-b/-w is used without URL. Use `about:blank`
## for a blank page.
## Type: FuzzyUrl
c.url.default_page = 'http://rooncore_ip:9330/display'

## Page(s) to open at the start.
## Type: List of FuzzyUrl, or FuzzyUrl
c.url.start_pages = ['http://rooncore_ip:9330/display']

## Always restore open sites when qutebrowser is reopened.
## Type: Bool
c.auto_save.session = False