ambient/bitbar/ambient.60s.sh

23 lines
774 B
Bash
Raw Normal View History

#!/bin/bash
2020-01-08 21:21:10 +00:00
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
2020-02-14 18:20:11 +00:00
PATH="/usr/local/bin:$PATH" # to find Homebrew-installed fish
2020-01-08 21:21:10 +00:00
WIDGET=$(/usr/local/bin/fish $DIR/../ambient-widgets | tr '\n' ' ')
if [ -z "$WIDGET" ]; then
echo "🚄"
else
echo $WIDGET
echo "---"
2020-01-15 23:02:36 +00:00
echo "Go to map|href=https://iceportal.de/karte"
echo $(/usr/local/bin/fish $DIR/../ambient | tr '\n' '\r\n')
2020-01-08 21:21:10 +00:00
fi