mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 03:02:53 +00:00
Update AppBuilderExtension.cs
This commit is contained in:
parent
0d307671d1
commit
c70182432b
1 changed files with 73 additions and 4 deletions
|
|
@ -1,14 +1,83 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using Avalonia.Media;
|
||||||
|
|
||||||
namespace v2rayN.Desktop.Common;
|
namespace v2rayN.Desktop.Common;
|
||||||
|
|
||||||
public static class AppBuilderExtension
|
public static class AppBuilderExtension
|
||||||
{
|
{
|
||||||
public static AppBuilder WithFontByDefault(this AppBuilder appBuilder)
|
public static AppBuilder WithFontByDefault(this AppBuilder appBuilder)
|
||||||
{
|
{
|
||||||
var uri = Path.Combine(Global.AvaAssets, "Fonts#Noto Sans SC");
|
if (!OperatingSystem.IsLinux())
|
||||||
return appBuilder.With(new FontManagerOptions()
|
|
||||||
{
|
{
|
||||||
//DefaultFamilyName = uri,
|
var uri = Path.Combine(Global.AvaAssets, "Fonts#Noto Sans SC");
|
||||||
FontFallbacks = new[] { new FontFallback { FontFamily = new FontFamily(uri) } }
|
return appBuilder.With(new FontManagerOptions
|
||||||
|
{
|
||||||
|
FontFallbacks = new[]
|
||||||
|
{
|
||||||
|
new FontFallback { FontFamily = new FontFamily(uri) }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var fallbacks = new List<FontFallback>();
|
||||||
|
|
||||||
|
string? zhFont = RunFcMatch("sans:lang=zh-cn");
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(zhFont))
|
||||||
|
{
|
||||||
|
fallbacks.Add(new FontFallback
|
||||||
|
{
|
||||||
|
FontFamily = new FontFamily(zhFont)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
string? emojiFont = RunFcMatch("emoji");
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(emojiFont))
|
||||||
|
{
|
||||||
|
fallbacks.Add(new FontFallback
|
||||||
|
{
|
||||||
|
FontFamily = new FontFamily(emojiFont)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var notoUri = Path.Combine(Global.AvaAssets, "Fonts#Noto Sans SC");
|
||||||
|
fallbacks.Add(new FontFallback
|
||||||
|
{
|
||||||
|
FontFamily = new FontFamily(notoUri)
|
||||||
|
});
|
||||||
|
|
||||||
|
return appBuilder.With(new FontManagerOptions
|
||||||
|
{
|
||||||
|
FontFallbacks = fallbacks.ToArray()
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static string? RunFcMatch(string pattern)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var psi = new ProcessStartInfo
|
||||||
|
{
|
||||||
|
FileName = "/bin/bash",
|
||||||
|
ArgumentList = { "-c", $"fc-match -f \"%{{file}}\\n\" \"{pattern}\" | head -n 1" },
|
||||||
|
RedirectStandardOutput = true,
|
||||||
|
RedirectStandardError = true,
|
||||||
|
UseShellExecute = false
|
||||||
|
};
|
||||||
|
|
||||||
|
using var p = Process.Start(psi);
|
||||||
|
if (p == null) return null;
|
||||||
|
|
||||||
|
string output = p.StandardOutput.ReadToEnd().Trim();
|
||||||
|
return string.IsNullOrWhiteSpace(output) ? null : output;
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue