-
Notifications
You must be signed in to change notification settings - Fork 394
Expand file tree
/
Copy pathLinux.cs
More file actions
187 lines (163 loc) · 6 KB
/
Linux.cs
File metadata and controls
187 lines (163 loc) · 6 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.Versioning;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Platform;
namespace SourceGit.Native
{
[SupportedOSPlatform("linux")]
internal class Linux : OS.IBackend
{
public void SetupApp(AppBuilder builder)
{
builder.With(new X11PlatformOptions() { EnableIme = true });
}
public void SetupWindow(Window window)
{
if (OS.UseSystemWindowFrame)
{
window.ExtendClientAreaChromeHints = ExtendClientAreaChromeHints.Default;
window.ExtendClientAreaToDecorationsHint = false;
}
else
{
window.ExtendClientAreaChromeHints = ExtendClientAreaChromeHints.NoChrome;
window.ExtendClientAreaToDecorationsHint = true;
window.Classes.Add("custom_window_frame");
}
}
public void HideSelf()
{
// Do Nothing. Never used.
}
public void HideOtherApplications()
{
// Do Nothing. Never used.
}
public void ShowAllApplications()
{
// Do Nothing. Never used.
}
public string GetDataDir()
{
// AppImage supports portable mode
var appImage = Environment.GetEnvironmentVariable("APPIMAGE");
if (!string.IsNullOrEmpty(appImage) && File.Exists(appImage))
{
var portableDir = Path.Combine(Path.GetDirectoryName(appImage)!, "data");
if (Directory.Exists(portableDir))
return portableDir;
}
// Runtime data dir: ~/.sourcegit
var home = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var dataDir = Path.Combine(home, ".sourcegit");
if (Directory.Exists(dataDir))
return dataDir;
// Migrate old data: ~/.config/SourceGit
var oldDataDir = Path.Combine(home, ".config", "SourceGit");
if (Directory.Exists(oldDataDir))
{
try
{
Directory.Move(oldDataDir, dataDir);
}
catch
{
// Ignore errors
}
}
return dataDir;
}
public string FindGitExecutable()
{
return FindExecutable("git");
}
public string FindTerminal(Models.ShellOrTerminal shell)
{
if (shell.Type.Equals("custom", StringComparison.Ordinal))
return string.Empty;
return FindExecutable(shell.Exec);
}
public List<Models.ExternalTool> FindExternalTools()
{
var localAppDataDir = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
var finder = new Models.ExternalToolsFinder();
finder.VSCode(() => FindExecutable("code"));
finder.VSCodeInsiders(() => FindExecutable("code-insiders"));
finder.VSCodium(() => FindExecutable("codium"));
finder.Cursor(() => FindExecutable("cursor"));
finder.FindJetBrainsFromToolbox(() => Path.Combine(localAppDataDir, "JetBrains/Toolbox"));
finder.SublimeText(() => FindExecutable("subl"));
finder.Zed(() =>
{
var exec = FindExecutable("zeditor");
return string.IsNullOrEmpty(exec) ? FindExecutable("zed") : exec;
});
return finder.Tools;
}
public void OpenBrowser(string url)
{
var browser = Environment.GetEnvironmentVariable("BROWSER");
if (string.IsNullOrEmpty(browser))
browser = "xdg-open";
Process.Start(browser, url.Quoted());
}
public void OpenInFileManager(string path)
{
if (Directory.Exists(path))
{
Process.Start("xdg-open", path.Quoted());
}
else
{
var dir = Path.GetDirectoryName(path);
if (Directory.Exists(dir))
Process.Start("xdg-open", dir.Quoted());
}
}
public void OpenTerminal(string workdir, string args)
{
var home = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var cwd = string.IsNullOrEmpty(workdir) ? home : workdir;
var startInfo = new ProcessStartInfo();
startInfo.WorkingDirectory = cwd;
startInfo.FileName = OS.ShellOrTerminal;
startInfo.Arguments = args;
try
{
Process.Start(startInfo);
}
catch (Exception e)
{
Models.Notification.Send(workdir, $"Failed to start '{OS.ShellOrTerminal}'. Reason: {e.Message}", true);
}
}
public void OpenWithDefaultEditor(string file)
{
var proc = Process.Start("xdg-open", file.Quoted());
if (proc != null)
{
proc.WaitForExit();
if (proc.ExitCode != 0)
Models.Notification.Send("", $"Failed to open: {file}", true);
proc.Close();
}
}
private string FindExecutable(string filename)
{
var pathVariable = Environment.GetEnvironmentVariable("PATH") ?? string.Empty;
var paths = pathVariable.Split(Path.PathSeparator, StringSplitOptions.RemoveEmptyEntries);
foreach (var path in paths)
{
var test = Path.Combine(path, filename);
if (File.Exists(test))
return test;
}
var local = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), ".local", "bin", filename);
return File.Exists(local) ? local : string.Empty;
}
}
}