2018-08-17 13:38:22 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
2020-03-26 13:29:31 +00:00
|
|
|
set -o pipefail
|
2018-08-17 13:38:22 +00:00
|
|
|
|
|
|
|
main() {
|
2020-03-26 13:29:31 +00:00
|
|
|
: "${FALLBACK_COORDS:=40.4325:-79.863}"
|
|
|
|
local coords
|
|
|
|
coords="$(~/.get-coords 2>/dev/null || echo "${FALLBACK_COORDS}")"
|
|
|
|
exec "${REDSHIFT_EXE:-redshift}" -l "${coords}" -v
|
2018-08-17 13:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "${@}"
|