diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/desktop.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/desktop.png deleted file mode 100644 index 87f07f3d5..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/desktop.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/documents.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/documents.png deleted file mode 100644 index 3e7c64f10..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/documents.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/download.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/download.png deleted file mode 100644 index db35521aa..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/download.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/explorer.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/explorer.png deleted file mode 100644 index 4249a1593..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/explorer.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/libraries.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/libraries.png deleted file mode 100644 index 9244bc88c..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/libraries.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/music.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/music.png deleted file mode 100644 index 77067aaa4..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/music.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/mycomputer.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/mycomputer.png deleted file mode 100644 index aa3eb22fc..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/mycomputer.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/pictures.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/pictures.png deleted file mode 100644 index 1a86804e3..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/pictures.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Images/videos.png b/Plugins/Flow.Launcher.Plugin.Sys/Images/videos.png deleted file mode 100644 index 8f6cb677f..000000000 Binary files a/Plugins/Flow.Launcher.Plugin.Sys/Images/videos.png and /dev/null differ diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml index ed319f7f2..cdb6a32f0 100644 --- a/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml +++ b/Plugins/Flow.Launcher.Plugin.Sys/Languages/ko.xaml @@ -19,15 +19,6 @@ PC를 절전모드로 전환 휴지통 비우기 휴지통 열기 - 내 PC - 바탕 화면 - 라이브러리 - 파일 탐색기 - 사진 - 음악 - 비디오 - 다운로드 - 문서 색인 옵션 최대 절전 모드 Flow Launcher 설정 저장 diff --git a/Plugins/Flow.Launcher.Plugin.Sys/Main.cs b/Plugins/Flow.Launcher.Plugin.Sys/Main.cs index b87508b5c..101ac0514 100644 --- a/Plugins/Flow.Launcher.Plugin.Sys/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Sys/Main.cs @@ -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;