Console Linux sudo read password
This commit is contained in:
@@ -4,7 +4,6 @@ namespace FileTime.GuiApp.App.Configuration;
|
|||||||
|
|
||||||
public class MainGuiConfiguration
|
public class MainGuiConfiguration
|
||||||
{
|
{
|
||||||
|
|
||||||
public static Dictionary<string, string?> Configuration { get; }
|
public static Dictionary<string, string?> Configuration { get; }
|
||||||
static MainGuiConfiguration()
|
static MainGuiConfiguration()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -163,7 +163,10 @@ public class AdminElevationManager : IAdminElevationManager, INotifyPropertyChan
|
|||||||
StartInfo = new()
|
StartInfo = new()
|
||||||
{
|
{
|
||||||
FileName = _configuration.CurrentValue.LinuxElevationTool,
|
FileName = _configuration.CurrentValue.LinuxElevationTool,
|
||||||
CreateNoWindow = true
|
CreateNoWindow = true,
|
||||||
|
RedirectStandardInput = true,
|
||||||
|
RedirectStandardError = true,
|
||||||
|
RedirectStandardOutput = true
|
||||||
},
|
},
|
||||||
EnableRaisingEvents = true
|
EnableRaisingEvents = true
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user