polybar-scripts/polybar-scripts/info-projecthamster/info-projecthamster.sh

10 lines
172 B
Bash

#!/bin/sh
activity=$(hamster current 2> /dev/null | cut -d " " -f 3- | sed 's/@.* / - /')
if [ -n "$activity" ]; then
echo "$activity"
else
echo "No Activity"
fi