Bugfix: i3-wsbar: properly catch errors when writing to child process
This comes at the expense of having Try::Tiny as additional dependency, but I think Try::Tiny is widely available.
This commit is contained in:
parent
2c305b5429
commit
2fd8774249
8
i3-wsbar
8
i3-wsbar
|
@ -7,6 +7,7 @@ use warnings;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
use IPC::Run qw(start pump);
|
use IPC::Run qw(start pump);
|
||||||
|
use Try::Tiny;
|
||||||
use AnyEvent::I3;
|
use AnyEvent::I3;
|
||||||
use AnyEvent;
|
use AnyEvent;
|
||||||
use v5.10;
|
use v5.10;
|
||||||
|
@ -182,7 +183,12 @@ sub update_output {
|
||||||
$out .= "\n";
|
$out .= "\n";
|
||||||
|
|
||||||
$outputs->{$name}->{cmd_input} = $out;
|
$outputs->{$name}->{cmd_input} = $out;
|
||||||
pump $outputs->{$name}->{cmd} while length $outputs->{$name}->{cmd_input};
|
try {
|
||||||
|
pump $outputs->{$name}->{cmd} while length $outputs->{$name}->{cmd_input};
|
||||||
|
} catch {
|
||||||
|
warn "Could not write to dzen2";
|
||||||
|
exit 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue