Files
dotfiles/i3/i3/i3bar_parser.bash
Hannes Körber 4e5be594d5 Completely reworked the status bar.
It's now conky -> i3bar. To enable colors, conky produces JSON output.
The script i3bar_wrapper.bash handles the invocation of conky and
redirects the output of i3bar to i3bar_clickparser.bash, in which click
events can be handled (none implemented right now).
conky/virtualarch.conky.dzen is a conky output suitable for dzen2, it
should produce the same output as conky/virtualarch.conky does with
i3bar and JSON.
2013-09-26 12:32:25 +02:00

7 lines
102 B
Bash

#!/usr/bin/env bash
while read line; do
echo $line
echo $line >> ~/.i3/output_i3bar.log
done