#include "all.h"
#include <time.h>
+#include <sys/time.h>
#include <xcb/randr.h>
#include <X11/XKBlib.h>
#define SN_API_NOT_YET_FROZEN 1
if (!con->urgent && focused == con) {
DLOG("Ignoring urgency flag for current client\n");
- con->window->urgent = 0;
+ con->window->urgent.tv_sec = 0;
+ con->window->urgent.tv_usec = 0;
goto end;
}
//CLIENT_LOG(con);
if (con->window) {
if (con->urgent) {
- con->window->urgent = time(NULL);
+ gettimeofday(&con->window->urgent, NULL);
} else {
- con->window->urgent = 0;
+ con->window->urgent.tv_sec = 0;
+ con->window->urgent.tv_usec = 0;
}
}
LOG("Urgency flag changed to %d\n", con->urgent);
*/
#include "all.h"
+/* From sys/time.h, not sure if it’s available on all systems. */
+# define _i3_timercmp(a, b, CMP) \
+ (((a).tv_sec == (b).tv_sec) ? \
+ ((a).tv_usec CMP (b).tv_usec) : \
+ ((a).tv_sec CMP (b).tv_sec))
+
/*
* Initializes the Match data structure. This function is necessary because the
* members representing boolean values (like dock) need to be initialized with
Con *con = NULL;
if (match->urgent == U_LATEST) {
/* if the window isn't urgent, no sense in searching */
- if (window->urgent == 0) {
+ if (window->urgent.tv_sec == 0) {
return false;
}
/* if we find a window that is newer than this one, bail */
TAILQ_FOREACH(con, &all_cons, all_cons) {
if ((con->window != NULL) &&
- (con->window->urgent > window->urgent)) {
+ _i3_timercmp(con->window->urgent, window->urgent, >)) {
return false;
}
}
if (match->urgent == U_OLDEST) {
/* if the window isn't urgent, no sense in searching */
- if (window->urgent == 0) {
+ if (window->urgent.tv_sec == 0) {
return false;
}
/* if we find a window that is older than this one (and not 0), bail */
TAILQ_FOREACH(con, &all_cons, all_cons) {
if ((con->window != NULL) &&
- (con->window->urgent != 0) &&
- (con->window->urgent < window->urgent)) {
+ (con->window->urgent.tv_sec != 0) &&
+ _i3_timercmp(con->window->urgent, window->urgent, <)) {
return false;
}
}
$top->add_hint('urgency');
sync_with_i3;
-# Unfortunately, we cannot get rid of this delay. We need it because i3 stores
-# the time of an urgency hint with second precision.
-sleep 1;
-
$bottom->add_hint('urgency');
sync_with_i3;
$top->add_hint('urgency');
sync_with_i3;
-# Unfortunately, we cannot get rid of this delay. We need it because i3 stores
-# the time of an urgency hint with second precision.
-sleep 1;
-
$bottom->add_hint('urgency');
sync_with_i3;