diff --git a/Plugins/Wox.Plugin.Sys/Main.cs b/Plugins/Wox.Plugin.Sys/Main.cs index 7cb35c55f8..7c71015811 100644 --- a/Plugins/Wox.Plugin.Sys/Main.cs +++ b/Plugins/Wox.Plugin.Sys/Main.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Diagnostics; using System.Runtime.InteropServices; @@ -136,6 +136,13 @@ namespace Wox.Plugin.Sys Action = c => FormsApplication.SetSuspendState(PowerState.Suspend, false, false) }, new Result + { + Title = "Hibernate", + SubTitle = "Hibernate computer", + IcoPath = "Images\\sleep.png", // Icon change needed + Action = c => FormsApplication.SetSuspendState(PowerState.Hibernate, false, false) + }, + new Result { Title = "Empty Recycle Bin", SubTitle = context.API.GetTranslation("wox_plugin_sys_emptyrecyclebin"),