Files
RemSox/UI/CLI/Commands/StartGuiCommand.cs
T
2026-06-08 21:30:40 +02:00

18 lines
470 B
C#

using RemSox.Processes;
using RemSox.Processing;
using RemSox.UI.CLI;
namespace RemSox.UI.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? arguments, Action<string> printLine)
{
printLine("Starting Desktop Process...");
_ = ProcessManager.SpawnProcess<DesktopProcess>();
}
}