dotfiles/.config/polybar/scripts/info-projecthamster.sh
2024-01-29 08:31:23 -06:00

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