mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
16 lines
393 B
C#
16 lines
393 B
C#
#if UNITY_EDITOR_LINUX || UNITY_STANDALONE_LINUX
|
|
using System.Diagnostics;
|
|
|
|
namespace Starpelly.OperatingSystem
|
|
{
|
|
public class Linux : IOperatingSystem
|
|
{
|
|
public void ChangeWindowTitle(string newTitle)
|
|
{
|
|
var pid = Process.GetCurrentProcess().Id;
|
|
var args = $"search --all --pid {pid} --class '.' set_window --name \"{newTitle}\"";
|
|
Process.Start("xdotool", args);
|
|
}
|
|
}
|
|
}
|
|
#endif
|