mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-05-02 05:47:18 +02:00
16 lines
570 B
Plaintext
16 lines
570 B
Plaintext
# Equinoxes and solstices
|
|
|
|
IF $LatDeg >= 0
|
|
# Northern Hemisphere
|
|
REM NOQUEUE [soleq(0)] MSG %"Vernal Equinox%" is %3.
|
|
REM NOQUEUE [soleq(1)] MSG %"Summer Solstice%" is %3.
|
|
REM NOQUEUE [soleq(2)] MSG %"Autumnal Equinox%" is %3.
|
|
REM NOQUEUE [soleq(3)] MSG %"Winter Solstice%" is %3.
|
|
ELSE
|
|
# Southern Hemisphere
|
|
REM NOQUEUE [soleq(0)] MSG %"Autumnal Equinox%" is %3.
|
|
REM NOQUEUE [soleq(1)] MSG %"Winter Solstice%" is %3.
|
|
REM NOQUEUE [soleq(2)] MSG %"Vernal Equinox%" is %3.
|
|
REM NOQUEUE [soleq(3)] MSG %"Summer Solstice%" is %3.
|
|
ENDIF
|