mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-11-08 01:43:13 +00:00
10 lines
172 B
Bash
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
|