mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Remove autohotkey and add toggle command args
This commit is contained in:
20
Wox/CommandArgs/ToggleCommandArg.cs
Normal file
20
Wox/CommandArgs/ToggleCommandArg.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Wox.CommandArgs
|
||||
{
|
||||
public class ToggleCommandArg:ICommandArg
|
||||
{
|
||||
public string Command
|
||||
{
|
||||
get { return "toggle"; }
|
||||
}
|
||||
|
||||
public void Execute(IList<string> args)
|
||||
{
|
||||
App.Window.ToggleWox();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user