mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
Setting runcommand as the default execution method, and turning off run as admin by default.
This commit is contained in:
@@ -4,10 +4,10 @@ namespace Wox.Plugin.Shell
|
||||
{
|
||||
public class Settings
|
||||
{
|
||||
public Shell Shell { get; set; } = Shell.Cmd;
|
||||
public Shell Shell { get; set; } = Shell.RunCommand;
|
||||
public bool ReplaceWinR { get; set; } = true;
|
||||
public bool LeaveShellOpen { get; set; }
|
||||
public bool RunAsAdministrator { get; set; } = true;
|
||||
public bool RunAsAdministrator { get; set; } = false;
|
||||
|
||||
public Dictionary<string, int> Count = new Dictionary<string, int>();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user