mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 09:06:23 +02:00
17 lines
449 B
C#
17 lines
449 B
C#
using RemSox.Processes;
|
|
using RemSox.Processing;
|
|
|
|
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>();
|
|
}
|
|
}
|