You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
261 B
13 lines
261 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
set -o errexit
|
||
5 years ago
|
set -o pipefail
|
||
6 years ago
|
|
||
|
main() {
|
||
5 years ago
|
: "${FALLBACK_COORDS:=40.4325:-79.863}"
|
||
|
local coords
|
||
5 years ago
|
coords="$(~/.local/bin/latlon 2>/dev/null || echo "${FALLBACK_COORDS}")"
|
||
5 years ago
|
exec "${REDSHIFT_EXE:-redshift}" -l "${coords}" -v
|
||
6 years ago
|
}
|
||
|
|
||
|
main "${@}"
|