mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 18:27:11 +02:00

Launch the Ryujinx.exe, first argument --no-gui or nogui, and the rest of the arguments should be your normal headless script. You can include the new option --use-main-config which will provide any arguments that you don't, filled in from your main config made by the UI. Input config is not inherited at this time.
15 lines
516 B
C#
15 lines
516 B
C#
using Ryujinx.HLE.UI;
|
|
|
|
namespace Ryujinx.Headless
|
|
{
|
|
internal class HeadlessHostUiTheme : IHostUITheme
|
|
{
|
|
public string FontFamily => "sans-serif";
|
|
|
|
public ThemeColor DefaultBackgroundColor => new(1, 0, 0, 0);
|
|
public ThemeColor DefaultForegroundColor => new(1, 1, 1, 1);
|
|
public ThemeColor DefaultBorderColor => new(1, 1, 1, 1);
|
|
public ThemeColor SelectionBackgroundColor => new(1, 1, 1, 1);
|
|
public ThemeColor SelectionForegroundColor => new(1, 0, 0, 0);
|
|
}
|
|
}
|