-
-
Save danhab99/03d6a99b45ca13f0ffdab78f606c63f3 to your computer and use it in GitHub Desktop.
i3 bar for motivation in these times of working from home. Thanks https://gofuckingwork.com/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[motivation] | |
command=/path/to/motivation/script/motivation | |
interval=900 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MOTIVATIONS=$(curl -s 'https://gofuckingwork.com/quotes.json' | jq -c -r '[.language.en[] | if length == 2 then .[0] else . end] | join(":")') | |
IFS=':' read -ra QUOTES <<< "$MOTIVATIONS" | |
index=$(shuf -i 1-${#QUOTES[@]} -n 1) | |
echo "${QUOTES[$index-1]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment