Shagon94

Results 10 comments of Shagon94

@rkrv @purezen The `parse_git_dirty` function can be fixed by replacing it with: ```sh parse_git_dirty() { [[ -n "$(git status -s 2> /dev/null)" ]] && echo "*" } ``` much less...

I think you could use [supervisord](http://supervisord.org/) to launch every service you need. For example: ```dockerfile ... ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf CMD ["/usr/bin/supervisord"] ... ``` ```ini # supervisord file [supervisord] nodaemon=true [program:php-fpm]...

> @andyljones that's precisely the reason why we need plugins: not everything can be implemented into the core, but the app itself should be powerful enough to be able to...

not sure if this feature was deprioritized but would love to have this feature, seeing as this was opened 5 years ago I wanted to check if this is still...

would like to have an integration with `brew`, right now the general installation for the newest version of macos isn't working

You can use https://github.com/thomasloven/lovelace-card-mod with the above CSS, confirmed it works.

Reproduced the issue, although not in that high regard, it sits around 20% every day.

I believe I've fixed it by updating the user-agents used. ```diff diff --git a/scripts/update_oauth_resources.sh b/scripts/update_oauth_resources.sh index 7eeb959..e244de2 100755 --- a/scripts/update_oauth_resources.sh +++ b/scripts/update_oauth_resources.sh @@ -5,6 +5,18 @@ # - rg #...

The user-agent is not the fix, I _think_ some cookie needs to be refreshed. I've given up on redlib as reddit wants as much data they can get their hands...