12 lines
461 B
Bash
Executable File
12 lines
461 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This parameter influences the scale at which
|
|
# the Roon UI is rendered.
|
|
#
|
|
# 1.0 is default, but on an UHD screen this should be 1.5 or 2.0
|
|
|
|
SCALEFACTOR=0.2
|
|
|
|
PREFIX=/home/teraflops/my_roon_instance
|
|
env WINEPREFIX=/home/teraflops/my_roon_instance WINEDEBUG=fixme-all WINEDLLOVERRIDES="windows.media.mediacontrol=" wine /home/teraflops/my_roon_instance/dosdevices/c:/users/teraflops/AppData/Local/Roon/Application/Roon.exe -scalefactor=$SCALEFACTOR
|