From 7c614992bb8f37c652d3770e68a690a45ec4402b Mon Sep 17 00:00:00 2001 From: Sam Nystrom Date: Mon, 12 Jan 2026 21:42:08 -0500 Subject: update eww config --- .config/eww/cava.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .config/eww/cava.py (limited to '.config/eww/cava.py') diff --git a/.config/eww/cava.py b/.config/eww/cava.py new file mode 100644 index 0000000..a7b40b8 --- /dev/null +++ b/.config/eww/cava.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 +import sys; +for line in sys.stdin: + sys.stdout.write(''.join("▁▂▃▄▅▆▇█"[int(x)] for x in line.rstrip().split(";") if x) + '\n') + sys.stdout.flush() -- cgit v1.2.3