mirror of
https://github.com/lin-ycv/EverythingPowerToys.git
synced 2025-04-03 23:11:37 +08:00
fluent icons for windows 11
This commit is contained in:
parent
b2e86295fc
commit
29cfe26de3
4
.github/README.md
vendored
4
.github/README.md
vendored
@ -15,8 +15,8 @@
|
||||
EverythingPowerToys (EPT) is a plugin for the program [PowerToys Run (PTR)](https://learn.microsoft.com/en-us/windows/powertoys/run)<br>
|
||||
This adds the ability to search the computer for files and folders using [Everything](https://www.voidtools.com/) inside PTR
|
||||
|
||||
#### Install instructions
|
||||
There are 4 different methods of installation, chose the one you prefer:
|
||||
#### Install Methods
|
||||
Chose the one you prefer:
|
||||
1) Chocolatey
|
||||
2) Scoop
|
||||
3) WinGet
|
||||
|
@ -10,7 +10,7 @@
|
||||
<AssemblyName>Community.PowerToys.Run.Plugin.Everything</AssemblyName>
|
||||
<Version>$([System.IO.File]::ReadAllText('$(MSBuildThisFileDirectory)plugin.json').Split(',')[5].Split(':')[1].Trim().Trim('"'))</Version>
|
||||
|
||||
<useWPF>true</useWPF>
|
||||
<!--<useWPF>true</useWPF>-->
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
||||
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
||||
|
@ -19,6 +19,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
internal sealed class ContextMenuLoader(PluginInitContext context, string options) : IContextMenu
|
||||
{
|
||||
private readonly PluginInitContext _context = context;
|
||||
private readonly string font = "Segoe Fluent Icons,Segoe MDL2 Assets";
|
||||
|
||||
// Extensions for adding run as admin context menu item for applications
|
||||
private readonly string[] _appExtensions = [".exe", ".bat", ".appref-ms", ".lnk"];
|
||||
@ -54,7 +55,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.open_containing_folder,
|
||||
Glyph = "\xE838",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.E,
|
||||
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
||||
Action = _ =>
|
||||
@ -83,7 +84,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.run_as_admin,
|
||||
Glyph = "\xE7EF",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.Enter,
|
||||
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
||||
Action = _ =>
|
||||
@ -113,7 +114,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.run_as_user,
|
||||
Glyph = "\xE7EE",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.U,
|
||||
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
||||
Action = _ =>
|
||||
@ -141,7 +142,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.copy_file + (_swapCopy ? Resources.copy_shortcut : Resources.copy_shortcutAlt),
|
||||
Glyph = "\xE8C8",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.C,
|
||||
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control : ModifierKeys.Control | ModifierKeys.Alt,
|
||||
|
||||
@ -171,7 +172,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.copy_path + (_swapCopy ? Resources.copy_shortcutAlt : Resources.copy_shortcut),
|
||||
Glyph = "\xE71B",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.C,
|
||||
AcceleratorModifiers = _swapCopy ? ModifierKeys.Control | ModifierKeys.Alt : ModifierKeys.Control,
|
||||
|
||||
@ -201,7 +202,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.open_in_console,
|
||||
Glyph = "\xE756",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.C,
|
||||
AcceleratorModifiers = ModifierKeys.Control | ModifierKeys.Shift,
|
||||
|
||||
@ -232,7 +233,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.open_in_custom,
|
||||
Glyph = "\xE8A7",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.N,
|
||||
AcceleratorModifiers = ModifierKeys.Control,
|
||||
|
||||
@ -262,7 +263,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.delete_result,
|
||||
Glyph = "\xE74D",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.Delete,
|
||||
AcceleratorModifiers = ModifierKeys.Control,
|
||||
Action = (context) =>
|
||||
@ -290,7 +291,7 @@ namespace Community.PowerToys.Run.Plugin.Everything.ContextMenu
|
||||
PluginName = Assembly.GetExecutingAssembly().GetName().Name,
|
||||
Title = Resources.scm,
|
||||
Glyph = "\xE712",
|
||||
FontFamily = "Segoe MDL2 Assets",
|
||||
FontFamily = font,
|
||||
AcceleratorKey = Key.M,
|
||||
AcceleratorModifiers = ModifierKeys.Control,
|
||||
Action = (context) =>
|
||||
|
@ -4,7 +4,7 @@
|
||||
"IsGlobal": true,
|
||||
"Name": "Everything",
|
||||
"Author": "Yu Chieh (Victor) Lin",
|
||||
"Version": "0.88.0",
|
||||
"Version": "0.89.0",
|
||||
"Language": "csharp",
|
||||
"Website": "https://github.com/Lin-ycv/EverythingPowerToys",
|
||||
"ExecuteFileName": "Community.PowerToys.Run.Plugin.Everything.dll",
|
||||
|
Loading…
x
Reference in New Issue
Block a user