-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstatus.pl
executable file
·41 lines (32 loc) · 1.23 KB
/
status.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env perl
# vim:ts=4:sw=4:expandtab
# © 2012 Michael Stapelberg, Public Domain
# This script is a simple wrapper which prefixes each i3status line with custom
# information. To use it, ensure your ~/.i3status.conf contains this line:
# output_format = "i3bar"
# in the 'general' section.
# Then, in your ~/.i3/config, use:
# status_command i3status | ~/i3status/contrib/wrapper.pl
# In the 'bar' section.
use strict;
use warnings;
# You can install the JSON module with 'cpan JSON' or by using your
# distribution’s package management system, for example apt-get install
# libjson-perl on Debian/Ubuntu.
use JSON;
# Don’t buffer any output.
$| = 1;
# Skip the first line which contains the version header.
print scalar <STDIN>;
# The second line contains the start of the infinite array.
print scalar <STDIN>;
# Read lines forever, ignore a comma at the beginning if it exists.
while (my ($statusline) = (<STDIN> =~ /^,?(.*)/)) {
# Decode the JSON-encoded line.
my @blocks = @{decode_json($statusline)};
# Get the microphone info
my @micBlock = @{decode_json(`~/scripts/status/status-mic.pl`)};
@blocks = (@blocks, @micBlock);
# Output the line as JSON.
print encode_json(\@blocks) . ",\n";
}