diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png b/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png new file mode 100644 index 000000000..cc3bf4ea8 Binary files /dev/null and b/Plugins/Flow.Launcher.Plugin.Shell/Images/copy.png differ diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml index 586ac293b..8665e17bb 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml +++ b/Plugins/Flow.Launcher.Plugin.Shell/Languages/en.xaml @@ -11,4 +11,5 @@ this command has been executed {0} times execute command through command shell Run As Administrator + Copy the command \ No newline at end of file diff --git a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs index 4e0f3c80a..c442505af 100644 --- a/Plugins/Flow.Launcher.Plugin.Shell/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Shell/Main.cs @@ -343,6 +343,16 @@ namespace Flow.Launcher.Plugin.Shell return true; }, IcoPath = Image + }, + new Result + { + Title = context.API.GetTranslation("flowlauncher_plugin_cmd_copy"), + Action = c => + { + Clipboard.SetDataObject(selectedResult.Title); + return true; + }, + IcoPath = "Images/copy.png" } };