Updated swaybar script

This commit is contained in:
Felipe M 2021-02-02 15:47:47 +01:00
parent eba8d60086
commit 6cc138acc6
Signed by: fmartingr
GPG Key ID: 716BC147715E716F
1 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#!/bin/bash
# vim: ts=4
source $HOME/.secrets/finnhub
function getPowerValue() {
POWER=$(cat /sys/class/power_supply/BAT0/capacity)%
echo $POWER
@ -23,8 +25,16 @@ function getVolume() {
echo $(amixer get Master | grep 'Left:' | awk -F"[][]" '{ print $2 }')
}
function getStock() {
curl -s "https://finnhub.io/api/v1/quote?symbol=$1&token=$SECRET_FINNHUB_TOKEN" | jq ".c"
}
function getNextEvent() {
khal list now -df "" | grep -v "^ " | head -n 1
}
while [ True ]; do
echo "$(getVolume) | $(getPowerValue)$(getPowerStatus) | $(getDate)"
echo "$(getNextEvent) | $(getStock AMC) . $(getStock GME) | $(getVolume) | $(getPowerValue)$(getPowerStatus) | $(getDate)"
sleep 30
done