diff options
Diffstat (limited to 'commands/msg/pipe.go')
-rw-r--r-- | commands/msg/pipe.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 158f9ea3..6f8c6167 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -91,10 +91,14 @@ func (_ Pipe) Execute(aerc *widgets.Aerc, args []string) error { aerc.PushStatus(" "+err.Error(), 10*time.Second). Color(tcell.ColorDefault, tcell.ColorRed) } else { + color := tcell.ColorDefault + if ecmd.ProcessState.ExitCode() != 0 { + color = tcell.ColorRed + } aerc.PushStatus(fmt.Sprintf( - "%s: completed with status %d", args[0], + "%s: completed with status %d", cmd[0], ecmd.ProcessState.ExitCode()), 10*time.Second). - Color(tcell.ColorDefault, tcell.ColorDefault) + Color(tcell.ColorDefault, color) } } |