Skip to content

Commit e63d7b7

Browse files
authored
Merge pull request #3395 from onesounds/250329-SysPluginGlyph
Add glyph icons for Sys Plugin
2 parents a3ef6fa + c2d1b30 commit e63d7b7

File tree

1 file changed

+12
-3
lines changed
  • Plugins/Flow.Launcher.Plugin.Sys

1 file changed

+12
-3
lines changed

Plugins/Flow.Launcher.Plugin.Sys/Main.cs

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ private List<Result> Commands()
302302
new Result
303303
{
304304
Title = "Hibernate",
305-
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe945"),
305+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe8be"),
306306
IcoPath = "Images\\hibernate.png",
307307
Action= c =>
308308
{
@@ -325,7 +325,7 @@ private List<Result> Commands()
325325
{
326326
Title = "Empty Recycle Bin",
327327
IcoPath = "Images\\recyclebin.png",
328-
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe74d"),
328+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xea99"),
329329
Action = c =>
330330
{
331331
// http://www.pinvoke.net/default.aspx/shell32/SHEmptyRecycleBin.html
@@ -361,6 +361,7 @@ private List<Result> Commands()
361361
{
362362
Title = "Exit",
363363
IcoPath = "Images\\app.png",
364+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe89f"),
364365
Action = c =>
365366
{
366367
Application.Current.MainWindow.Close();
@@ -370,6 +371,7 @@ private List<Result> Commands()
370371
new Result
371372
{
372373
Title = "Save Settings",
374+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xea35"),
373375
IcoPath = "Images\\app.png",
374376
Action = c =>
375377
{
@@ -381,6 +383,7 @@ private List<Result> Commands()
381383
},
382384
new Result
383385
{
386+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe72c"),
384387
Title = "Restart Flow Launcher",
385388
IcoPath = "Images\\app.png",
386389
Action = c =>
@@ -392,6 +395,7 @@ private List<Result> Commands()
392395
new Result
393396
{
394397
Title = "Settings",
398+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xf210"),
395399
IcoPath = "Images\\app.png",
396400
Action = c =>
397401
{
@@ -403,6 +407,7 @@ private List<Result> Commands()
403407
{
404408
Title = "Reload Plugin Data",
405409
IcoPath = "Images\\app.png",
410+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe72c"),
406411
Action = c =>
407412
{
408413
// Hide the window first then show msg after done because sometimes the reload could take a while, so not to make user think it's frozen.
@@ -421,6 +426,7 @@ private List<Result> Commands()
421426
new Result
422427
{
423428
Title = "Check For Update",
429+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xede4"),
424430
IcoPath = "Images\\checkupdate.png",
425431
Action = c =>
426432
{
@@ -431,6 +437,7 @@ private List<Result> Commands()
431437
},
432438
new Result
433439
{
440+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xf12b"),
434441
Title = "Open Log Location",
435442
IcoPath = "Images\\app.png",
436443
CopyText = logPath,
@@ -444,6 +451,7 @@ private List<Result> Commands()
444451
new Result
445452
{
446453
Title = "Flow Launcher Tips",
454+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe897"),
447455
IcoPath = "Images\\app.png",
448456
CopyText = Constant.Documentation,
449457
AutoCompleteText = Constant.Documentation,
@@ -456,6 +464,7 @@ private List<Result> Commands()
456464
new Result
457465
{
458466
Title = "Flow Launcher UserData Folder",
467+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xf12b"),
459468
IcoPath = "Images\\app.png",
460469
CopyText = userDataPath,
461470
AutoCompleteText = userDataPath,
@@ -480,7 +489,7 @@ private List<Result> Commands()
480489
{
481490
Title = "Set Flow Launcher Theme",
482491
IcoPath = "Images\\app.png",
483-
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\ue7fc"),
492+
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\ue790"),
484493
Action = c =>
485494
{
486495
_context.API.ChangeQuery($"{ThemeSelector.Keyword} ");

0 commit comments

Comments
 (0)