-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
30 lines (29 loc) · 992 Bytes
/
Program.cs
File metadata and controls
30 lines (29 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Diagnostics;
namespace ESLauncher
{
class Program
{
static void Main(string[] args)
{
var dir = System.IO.Directory.GetCurrentDirectory();
Environment.SetEnvironmentVariable("HOME", dir);
Console.WriteLine($"Setting HOME environment varible to <{Environment.GetEnvironmentVariable("HOME")}>...");
var processName = "emultationstation.exe";
Process process = new Process();
process.StartInfo.FileName = "emulationstation.exe";
process.StartInfo.UseShellExecute = true;
try
{
Console.WriteLine($"Starting <{processName}>...");
process.Start();
Console.WriteLine($"Waiting for <{processName}> to exit...");
process.WaitForExit();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}