To display the current watson status in your i3 bar using conky:
- in the conky configuration, add:
{"full_text": "${texeci 5 ~/.config/i3/watson-status}"}
- in
~/.config/i3/watson-status
:
#!/bin/bash
watson status |
sed -r '
s!^Project !!g;
s!([^ ]+).+started !\1 (!g;
s! ago .*!)!g
'
See https://github.com/yloiseau/watson-utils for maintained version