mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-05 04:39:08 +08:00
Setting runcommand as the default execution method, and turning off run as admin by default.
This commit is contained in:
parent
9ae97de780
commit
44943feb8b
@ -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>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user