Commit Graph

68 Commits (master)

Author SHA1 Message Date
Kenny Levinsen b6cfe1761d Free output name, skip storing description 2023-09-01 15:45:46 +02:00
Kenny Levinsen aa8015064a Improve logging 2023-09-01 15:44:41 +02:00
Kenny Levinsen c59bbbd6e3 Remove xdg-output support
xdg-output was used to extract the output name, which can be obtained
from wl_output as of interface version 4, release in Wayland 1.20 almost
two years ago.
2023-09-01 15:00:28 +02:00
Kenny Levinsen 29d5b255e5 Change steps from 25K to 10K 2023-09-01 14:06:53 +02:00
Kenny Levinsen 81cfb0b4f8 Force mode on SIGUSR1
Sending SIGUSR1 will make wlsunset cycle between forcing the temperature
high, forcing it low, and returning to automatic temperature control.
2023-06-02 11:58:05 +02:00
Kenny Levinsen cc9251d5c3 display_dispatch: Terminate poll loop on EPIPE
display_dispatch tried to flush the display in a loop until it no longer
returns an error that is EAGAIN or EPIPE. This becomes an infinite loop
if the socket is closed.

Stop flushing if we hit EPIPE, as the connection is dead. We still try
to read what we were sent to the protocol error shows up in debug
output.
2023-01-23 14:59:20 +01:00
Kenny Levinsen e3cec522cf Negate longitude_time_offset
Instead of negating at every single point of use, just negate the
calculation.
2022-05-04 11:06:47 +02:00
Kenny Levinsen 5afa1d2819 Use timezone as time offset for manual time
When entering manual time, the timezone was adjusted in the time input
instead of storing the time offset. The time offset is necessary to
calculate the correct day boundaries.

Remove the timezone correction of time input and instead adjust the time
offset accordingly.
2022-05-04 11:01:10 +02:00
Kenny Levinsen 8d1067a5aa Move feature defines to C files 2022-05-04 10:58:42 +02:00
Kenny Levinsen 09c5e9a8dd Ensure step time is at least 1 second
When configured to perform a very quick transition, the step time for 25
kelvin may end up being less than 1 second, rounding to zero. A zero
step time does not make any sense.
2022-05-02 10:44:21 +02:00
Kenny Levinsen 2e7d793bb6 Store enabled state on output
This allows us to check the name just once when we receive the
xdg_output::name event instead of every time we set the temperature.
2022-01-25 11:23:42 +01:00
Kenny Levinsen b7ef7d0ce8 Only set up xdg-output once 2022-01-25 11:23:08 +01:00
Artur Sinila 20d37fb751 Refactor RGB & XYZ colors into structs 2022-01-25 11:23:07 +01:00
Artur Sinila afc09a90c6 Support running only for specific outputs (displays)
Useful for laptops with external displays connected. External displays
usually have an ability to adjust color temperature via built-in menu,
so you can run `wlsunset` exclusively for laptop's internal display.

Also different screens happen to look differently after setting the same
color temperature. Possibly has to do with the technology which
display is based on (TN or IPS).
2022-01-25 11:22:20 +01:00
Evgeniy Khramtsov 601dfc87ff main.c: define timezone to tm.tm_gmtoff on FreeBSD
FreeBSD has BSD extension timezone, which conflicts with XSI extension
with the same name, according to time.h:

char *timezone(int, int);	/* XXX XSI conflict */
...

FreeBSD also has long tm_gmtoff member of struct tm, which is offset
from UTC in seconds, according to time.h:

struct tm {
...
long    tm_gmtoff;	/* offset from UTC in seconds */
char	*tm_zone;	/* timezone abbreviation */
}

which is the same as XSI extension timezone.

Co-authored-by: Jan Beich <jbeich@FreeBSD.org> (downstream patch)
Reviewed by: Kenny Levinsen <kl@kl.wtf>
2021-11-29 08:14:26 +01:00
Kenny Levinsen 53d19e4c76 Add version command line flag 2021-02-01 13:24:17 +01:00
Kenny Levinsen 111181106e Add support for manual sunset/sunrise
The new -S/-s/-d flags allow for manually specifying the time of sunset,
ssunrise in the format of HH:MM, and the transitional animation duration
in seconds, respectively.

This is implemented by sidestepping the calc_sun call in manual mode.
The rest of wlsunset operates as usual.
2021-01-29 17:32:51 +01:00
Kenny Levinsen 93d7d01bad Give config gamma as double to set_temperature
The gamma argument to set_temperature was incorrectly typed as an int,
causing unfortunate rounding.
2021-01-29 16:39:06 +01:00
Kenny Levinsen 0569fb45bd Option cleanup 2020-10-21 01:41:49 +02:00
Kenny Levinsen 0da97df89e Use clock_gettime for all time requests 2020-10-21 00:49:35 +02:00
Kenny Levinsen 0703fbcc0e Minor line length reduction 2020-10-21 00:41:50 +02:00
Kenny Levinsen b9f0b8e3c0 Move longitude time correction out of calc_sun
calc_sun reported sun trajectory in seconds since the start of a UTC
day, as they would occur for the specified UTC day. The caller would
then add the UTC timestamp for the start of a UTC day to these numbers.
This lead to complications, as e.g. a sunrise in China would be a
negative value, as it occurred in the last UTC day.

Futhermore, the start of a UTC day was used to signal the need for new
sun calculations. This would lead to recalculations to possibly occur
after its results were needed, such as after sunrise when the target
longitude deviated significantly from the prime meridian.

To fix this, we apply longitude time correction to the start of day
calculation. This way recalculation will occur on the start of the
longitude local day, close midnight for the observer.

We also remove the longitude time correction from calc_sun, so that it
simply returning the number of seconds since the start of the local day
of the observer. The caller then adds the start of the longitude local
day to get the final numbers.
2020-10-19 14:18:28 +02:00
Kenny Levinsen b43cd9f343 Sort sun and wayland code 2020-10-19 00:39:38 +02:00
Kenny Levinsen 1da4343e31 Remove manual duration for now 2020-10-19 00:37:47 +02:00
Kenny Levinsen 5c497febb7 Do not use -1 for sun calc error 2020-10-19 00:37:02 +02:00
Kenny Levinsen c7c8dad01d Self-pipe timer signal handling 2020-10-18 22:41:22 +02:00
Kenny Levinsen f66842c020 Split up main a bit 2020-10-18 01:19:47 +02:00
Kenny Levinsen fdcdb04023 Remove clamp from color_math.h 2020-10-18 00:45:36 +02:00
Kenny Levinsen 75b0a71d99 Simplify speedrun code a bit 2020-10-18 00:36:52 +02:00
Kenny Levinsen e14e8efcf3 Gracefully handle midnight sun/polar night
The sun trajectory calculation previously emitted garbage if midnight
sun or polar night phenomena was in effect. To fix this, the calculation
is overhauled to report if the computation failed, and if so, which
specific phenomena was the cause.

Timing recalulation uses this information to change out of the normal
state that uses the four sun position timings, into a static state where
wlsunset simply waits a day at a time for a normal sun trajectory
pattern to be restored. In this state, a fixedc high/low temperature is
set as appropriate for the phenomena.

A transition phase replicating the previous day's sunrise is used to
smooth out entry into a midnight sun, which would otherwise cause a
jarring instant-daylight setting.
2020-10-18 00:36:52 +02:00
Kenny Levinsen 7bd167e9d3 Split state from config, cleanup 2020-10-14 17:57:34 +02:00
Kenny Levinsen 67896358cf Precalculate animation step timings 2020-10-14 15:50:25 +02:00
Kenny Levinsen 9922bdeeef Cleanup dawn-overflowing deadline 2020-10-07 22:02:02 +02:00
Kenny Levinsen 3186967e1d Simplify state management 2020-10-07 21:55:46 +02:00
Kenny Levinsen 601e15080e Perform absolute sleeps 2020-10-04 19:49:45 +02:00
Kenny Levinsen 1dfefe2b51 Update temperature log 2020-10-04 15:33:00 +02:00
Kenny Levinsen cb294e1735 Prefix registry log output 2020-10-04 15:31:17 +02:00
Kenny Levinsen 46b9010b76 Warn about speedrun mode 2020-10-04 15:30:58 +02:00
Kenny Levinsen 83d90d2bea Calculate dawn and dusk times 2020-10-04 15:30:45 +02:00
Kenny Levinsen ddbb8f9912 Rename states to dawn, day, dusk and night 2020-10-04 15:26:47 +02:00
Kenny Levinsen caba0d8dcc Clean up gamma_control on failure 2020-10-04 15:24:54 +02:00
Kenny Levinsen f8269d8754 Improve speedrun time, increase to x1000 time 2020-10-04 15:23:49 +02:00
Kenny Levinsen 55bd086b51 Better log output 2020-10-04 01:03:23 +02:00
Kenny Levinsen 01779f7349 Break out of poll on signal 2020-10-04 00:56:51 +02:00
Kenny Levinsen daf27a5f11 Free output on removal, log add/remove 2020-10-04 00:56:17 +02:00
Kenny Levinsen 5761b05c1b Use wlsunset in anonymous file template 2020-10-04 00:55:25 +02:00
Kenny Levinsen 0128fb535f Check for zero-value in recalc_stops 2020-09-27 16:08:56 +02:00
Kenny Levinsen a74f7fd44f Allow direct high-to-low state transition 2020-09-26 19:37:52 +02:00
Kenny Levinsen 25ab690fa9 Recalculate next day immediately after sunset 2020-09-26 19:30:21 +02:00
Kenny Levinsen 39b211da95 Start high-to-low animation before sunset
Low-to-high animation runs from sunrise to sunrise+duration. However,
high-to-low animation ran from sunset to sunset+duration.

Run high-to-low animation at sunset-duration to sunset.
2020-09-26 19:27:48 +02:00