flakes/res/eww/scripts/title.sh

11 lines
294 B
Bash
Raw Normal View History

2022-03-22 23:50:53 +07:00
#!/usr/bin/env sh
xtitle -s | while read -r line ; do
trunc=$(echo $line | cut -c-85)
if [ -z "$line" ]; then
echo ""
else
echo "(box :class \"widget title\" :halign \"center\" :valign \"center\" :vexpand true :hexpand true (label :text \"${trunc}\"))"
fi
done