Chris Romp
Chris Romp
Ditto: ``` Traceback (most recent call last): File "/usr/local/bin/acd_cli", line 9, in load_entry_point('acdcli==0.3.2', 'console_scripts', 'acd_cli')() File "/usr/local/bin/acd_cli.py", line 1688, in main ret = args.func(args) File "/usr/local/bin/acd_cli.py", line 849, in usage_action...
I figured I'd try to enable my own security profile as outlined [here](https://acd-cli.readthedocs.io/en/latest/authorization.html#advanced-users-security-profile), but then I started getting `invalid_scope` errors when trying to get a token under my new profile....
@kedryn Yep that's what I'm concerned about. Guess all we can do is wait.
And programmers. 👍
The way that linuxserver.io handles it is they run everything in their container as user:group `abc:abc`. When starting a container they look for the `PUID` and `PGID` to set the...
There's a bit of overhead to how linuxserver.io does it. I've done some experimentation and without adding more "things" to the base image I haven't found a good way to...
@scyto This issue is long closed. I think you're safe. :)
Or I guess the PR is closed. Not sure why the issue is still open if the devs don't want to do it.
This was my solution, but I think I might like @Hootie81's option better. ```yaml washer_time_display: friendly_name: "Washer Time Display" value_template: > {% if is_state('sensor.washer_run_state', '-') %} {% elif is_state('sensor.washer_run_state', 'Standby')...
Since my dryer is currently running, can confirm this works: ```yaml dryer_time_display: friendly_name: "Dryer Time Display" value_template: > {% if is_state('sensor.dryer_run_state', '-') %} {% elif is_state('sensor.dryer_run_state', 'Standby') %} -:-- {%...