summaryrefslogtreecommitdiff
path: root/unlock_indicator.c
AgeCommit message (Collapse)Author
2012-10-26remove support for NOLIBCAIRO, cairo-xcb is widespread by nowMichael Stapelberg
2012-10-26use libxkbcommon for input handlingMichael Stapelberg
Thanks to Ran Benita and Daniel Stone (the libxkbcommon authors) for answering my questions and reviewing this code. With this commit, input handling should be more correct with using less code (in i3lock, that is).
2012-05-19Bugfix: Correctly center unlock indicator after reconfiguring screens ↵Michael Stapelberg
(Thanks xn) Fixes: #712
2012-04-01Use (void) instead of () for functions without args (Thanks fernandotcl)Michael Stapelberg
See also: http://article.gmane.org/gmane.linux.kernel/1268792 The C compiler will handle (void) as "no arguments" and () as "variadic function" (equivalent to (...)) which might lead to subtle errors, such as the one which was fixed with commit 0ea64ae4.
2012-03-26Bugfix: Fix background color when using cairo (Thanks Pascal)Michael Stapelberg
2012-01-07Added missing #ifndef NOLIBCAIROSimon Kämpe
Needed to compile without libcairo.
2012-01-04draw the unlock indicator in the middle of every screenMichael Stapelberg
2012-01-03Fix a few memory leaksMichael Stapelberg
2012-01-03Properly free timeouts, move one of the timeouts to unlock_indicator.cMichael Stapelberg
2012-01-03Refactor the unlock indicator into its own source code fileMichael Stapelberg