2024-03-07 20:22:22 -08:00
|
|
|
|
using Avalonia;
|
|
|
|
|
using System.Diagnostics;
|
2024-02-21 20:26:01 -08:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Runtime.Versioning;
|
|
|
|
|
|
|
|
|
|
namespace SourceGit.Native {
|
|
|
|
|
[SupportedOSPlatform("linux")]
|
|
|
|
|
internal class Linux : OS.IBackend {
|
2024-03-14 03:23:36 -07:00
|
|
|
|
public void SetupApp(AppBuilder builder) {
|
2024-03-07 20:22:22 -08:00
|
|
|
|
#if USE_FONT_INTER
|
|
|
|
|
builder.WithInterFont();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-21 20:26:01 -08:00
|
|
|
|
public string FindGitExecutable() {
|
|
|
|
|
if (File.Exists("/usr/bin/git")) return "/usr/bin/git";
|
|
|
|
|
return string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string FindVSCode() {
|
|
|
|
|
if (File.Exists("/usr/share/code/code")) return "/usr/share/code/code";
|
|
|
|
|
return string.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OpenBrowser(string url) {
|
|
|
|
|
if (!File.Exists("/usr/bin/xdg-open")) {
|
|
|
|
|
App.RaiseException("", $"You should install xdg-open first!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Process.Start("xdg-open", $"\"{url}\"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OpenInFileManager(string path, bool select) {
|
|
|
|
|
if (!File.Exists("/usr/bin/xdg-open")) {
|
|
|
|
|
App.RaiseException("", $"You should install xdg-open first!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Directory.Exists(path)) {
|
|
|
|
|
Process.Start("xdg-open", $"\"{path}\"");
|
|
|
|
|
} else {
|
|
|
|
|
var dir = Path.GetDirectoryName(path);
|
|
|
|
|
if (Directory.Exists(dir)) {
|
|
|
|
|
Process.Start("xdg-open", $"\"{dir}\"");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OpenTerminal(string workdir) {
|
|
|
|
|
var dir = string.IsNullOrEmpty(workdir) ? "~" : workdir;
|
2024-03-06 04:41:02 -08:00
|
|
|
|
if (File.Exists("/usr/bin/gnome-terminal")) {
|
|
|
|
|
Process.Start("/usr/bin/gnome-terminal", $"--working-directory=\"{dir}\"");
|
2024-02-21 20:26:01 -08:00
|
|
|
|
} else if (File.Exists("/usr/bin/konsole")) {
|
|
|
|
|
Process.Start("/usr/bin/konsole", $"--workdir \"{dir}\"");
|
|
|
|
|
} else if (File.Exists("/usr/bin/xfce4-terminal")) {
|
|
|
|
|
Process.Start("/usr/bin/xfce4-terminal", $"--working-directory=\"{dir}\"");
|
|
|
|
|
} else {
|
2024-03-06 04:41:02 -08:00
|
|
|
|
App.RaiseException("", $"Only supports gnome-terminal/konsole/xfce4-terminal!");
|
2024-02-21 20:26:01 -08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void OpenWithDefaultEditor(string file) {
|
|
|
|
|
if (!File.Exists("/usr/bin/xdg-open")) {
|
|
|
|
|
App.RaiseException("", $"You should install xdg-open first!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var proc = Process.Start("xdg-open", $"\"{file}\"");
|
|
|
|
|
proc.WaitForExit();
|
|
|
|
|
|
|
|
|
|
if (proc.ExitCode != 0) {
|
|
|
|
|
App.RaiseException("", $"Failed to open \"{file}\"");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
proc.Close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|