Botond Dénes

Results 853 comments of Botond Dénes

> Isn't this what all callers would want? I personally think @bhalevy misused `on_internal_error_noexcept()` here, we should have added a new variant that just always aborts for this use-case, or...

I think we should add another variant for the case you describe above. This will basically be a log + abort. The main value of this over an abort is...

`on_internal_error()` can replace `throw` but not `assert()`. Its purpose is to allow generating a coredump on-demand to investigate an otherwise non-fatal problem, that would be near-impossible to debug just based...

Since 8810950b only `app_template` and its users should include `boost::program_options`. Ah, I remembered now that `utils/program_options.hh` has some `boost::program_options` stuff in it, and that is included everywhere. I think we...

> How did you find out / hear about sol2? Don't remember exactly, some blog post, possibly [eliasdaler's](https://eliasdaler.github.io/) > What're you using it for? A hobby game project. > What...

Yes, the plugin tries to reconnect to the window manager continuously after a disconnect. I'm not sure what to do about that. This makes sense when you are running an...

I have no way of determining how i3 exited. I could modify it to check only once in a second.

You need to install [i3ipc-glib](https://github.com/acrisci/i3ipc-glib) and make sure `pkg-config` can find it. `i3ipc-glib`'s `make install` should do the trick.

On second look it looks like you do have `i3ipc-glib` but it's too old (v0.3.1). ``` *** The required package i3ipc-glib-1.0 was found on your system, *** but the installed...

These errors are coming from the i3ipc-glib library. I think this issue is also related to a host of other problems reported (#7, #20, #25)