设置:
Raspberry Pi 运行 raspbian,并连接显示器 (HDMI)
持续运行的 systemd 服务(守护进程)
目标:
启动显示屏上可见的新终端窗口
作为概念证明,我想运行一个 shell 脚本
在服务中运行 shell 脚本没有问题,但在显示屏上打开可见窗口似乎很困难。
代码(守护进程)
var process = new Process()
{
StartInfo = new ProcessStartInfo
{
FileName = "/bin/bash",
Arguments = $"-c \"{Paths.Dotnet} /path/to/app.dll\"",
WorkingDirectory = workingDirectory,
RedirectStandardOutput = false,
UseShellExecute = false,
CreateNoWindow = false,
WindowStyle = ProcessWindowStyle.Maximized
}
};
process.Start();
string result = process.StandardOutput.ReadToEnd();
process.WaitForExit();
**编辑** 将参数修改为:
Arguments = $"-c \"DISPLAY=:0.0 lxterminal -e {Paths.Dotnet} /path/to/app.dll\""
没有解决问题。 app.dll 被执行但仍在后台。