blob: b630bc9321e63fbd226bb2ed5fb745497299cadf (
plain) (
tree)
|
|
#!/bin/dash
location=
if test -r ~/.config/geolocation; then
location=-L"$(head -n1 ~/.config/geolocation | tr ' ' :)"
elif test -r /etc/geolocation; then
location=-L"$(head -n1 /etc/geolocation | tr ' ' :)"
fi
exec /usr/bin/radharc $location -l3500 -h5500 "$@"
|