Add DesktopProcess and start-gui command for launching GUI mode

This commit is contained in:
Stone_Red
2026-06-08 13:46:10 +02:00
parent 3522493689
commit 57f011ffe8
5 changed files with 108 additions and 6 deletions
+18
View File
@@ -0,0 +1,18 @@
using System;
using RemSox.Processing;
using RemSox.Processes;
using RemSox.UI.GUI.CLI;
namespace RemSox.UI.GUI.CLI.Commands;
public class StartGuiCommand : ICommand
{
public string Name => "start-gui";
public string Description => "Starts the Graphical User Interface (Desktop Process)";
public void Execute(string? args)
{
Console.WriteLine("Starting Desktop Process...");
ProcessManager.SpawnProcess<DesktopProcess>();
}
}