mirror of
https://github.com/PowerShell/PowerShell.git
synced 2024-11-24 02:04:07 +08:00
Skip tone/duration on beep on LINUX
This commit is contained in:
parent
372d69583f
commit
c0b16d7bf5
@ -656,7 +656,11 @@ namespace Microsoft.PowerShell
|
||||
case BellStyle.None:
|
||||
break;
|
||||
case BellStyle.Audible:
|
||||
#if LINUX
|
||||
Console.Beep();
|
||||
#else
|
||||
Console.Beep(Options.DingTone, Options.DingDuration);
|
||||
#endif
|
||||
break;
|
||||
case BellStyle.Visual:
|
||||
// TODO: flash prompt? command line?
|
||||
|
Loading…
Reference in New Issue
Block a user