Remove Commands
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 3 KiB |
|
Before Width: | Height: | Size: 2 KiB |
|
Before Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 3.1 KiB |
|
|
@ -19,15 +19,6 @@
|
|||
<system:String x:Key="flowlauncher_plugin_sys_sleep">PC를 절전모드로 전환</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">휴지통 비우기</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_openrecyclebin">휴지통 열기</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_openmypc">내 PC</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_openmydesktop">바탕 화면</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_libraries">라이브러리</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_explorer">파일 탐색기</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_pictures">사진</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_music">음악</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_videos">비디오</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_downloads">다운로드</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_documents">문서</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_indexoption">색인 옵션</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_hibernate">최대 절전 모드</system:String>
|
||||
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Flow Launcher 설정 저장</system:String>
|
||||
|
|
|
|||
|
|
@ -191,126 +191,6 @@ namespace Flow.Launcher.Plugin.Sys
|
|||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Explorer",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_explorer"),
|
||||
IcoPath = "Images\\explorer.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xec50"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
System.Diagnostics.Process.Start("explorer.exe", "");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "My PC",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_openmypc"),
|
||||
IcoPath = "Images\\mycomputer.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe7f4"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:mycomputerfolder");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Desktop",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_openmydesktop"),
|
||||
IcoPath = "Images\\desktop.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe7fb"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:desktop");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Libraries",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_libraries"),
|
||||
IcoPath = "Images\\libraries.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe8f1"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:Libraries");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Pictures",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_pictures"),
|
||||
IcoPath = "Images\\pictures.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe8b9"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:My Pictures");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Videos",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_videos"),
|
||||
IcoPath = "Images\\videos.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe714"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:My Video");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Documents",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_documents"),
|
||||
IcoPath = "Images\\documents.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe8a5"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:Personal");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Music",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_music"),
|
||||
IcoPath = "Images\\music.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe93c"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:My Music");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Index Option",
|
||||
|
|
@ -327,21 +207,6 @@ namespace Flow.Launcher.Plugin.Sys
|
|||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Downloads",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_downloads"),
|
||||
IcoPath = "Images\\download.png",
|
||||
Glyph = new GlyphInfo (FontFamily:"/Resources/#Segoe Fluent Icons", Glyph:"\xe7f4"),
|
||||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:downloads");
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
},
|
||||
new Result
|
||||
{
|
||||
Title = "Empty Recycle Bin",
|
||||
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_emptyrecyclebin"),
|
||||
|
|
@ -373,7 +238,7 @@ namespace Flow.Launcher.Plugin.Sys
|
|||
Action = c =>
|
||||
{
|
||||
{
|
||||
context.API.OpenDirectory("shell:RecycleBinFolder");
|
||||
System.Diagnostics.Process.Start("explorer.exe", "shell://RecycleBinFolder");
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||