mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
19 lines
465 B
C#
19 lines
465 B
C#
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>();
|
|
}
|
|
}
|