dvermd

Results 24 comments of dvermd

@jwhendy maybe [this advice from redshift](https://github.com/jonls/redshift#when-running-as-a-systemd-service-redshift-fails-to-connect-to-the-graphical-environment) might help you

First of all, I'm not a systemd administrator at all. Having a second thought on your problem, you may be right that the linked advice might not help in your...

Some more things you might check: * Is your service really run at resume `sudo journalctl -u ` ? * print your env var, the processes running, ls the /sys/class/...

I'm OK the syntax is not that user friendly. One thing that would be of some help for the parsing is to have a `get(Predicate)` accessor on the config. On...

This PR can, of course, be put on hold if you think it's better to rework the configuration format before merging it

I'd like to work on this one. I'll look at how the bspwm module is configured and see what I can do from there.

I started working on this one. Based on the alice_and_bob example, the receiver opens a secure channel with a forwarder and the sender uses the forwarder remote address to send...

From what I understood of `serde`: * the `Serialize` and `Deserialize` traits are there to map a user type to an serde internal representation/[data model](https://serde.rs/data-model.html). * the `Serializer` and `Deserializer`...

I looked into some coverage and made some small steps as I'm real new to serde. Now I found what may be a bug with this main which panics on...

I think the problem is when parsing the key of an JSON object: for example `{"3":3}` to a `HashMap`. In [serde-json](https://github.com/serde-rs/json/blob/master/src/de.rs#L1973), a MapKey struct is used to skip the `'"'`...