Diogo Lemos
Diogo Lemos
* Some sed commands require extended regular expressions for BSD sed variants. * Improve temporary CUE to be deleted always, even if errors occur. Also hides the warning when the...
My cmus configuration is kept on the `rc` file (as recommended from [cmus team](https://github.com/cmus/cmus/issues/918)). The problem is the file gets overwritten upon every install. I think it should be modified...
Adding a preliminary Makefile to make it easier to develop locally Add README with couple instructions It helped me to stay sane :)
Recently upgraded to 10.13.1, and after disabling SIP and patched iTunes is still opening. It was working before with Sierra up until now. Attached is the log [com.thebitguru.Play-Button-iTunes-Patch 2017-12-02 17-32.log](https://github.com/thebitguru/play-button-itunes-patch/files/1524028/com.thebitguru.Play-Button-iTunes-Patch.2017-12-02.17-32.log)
These suggestions are submitted to improve the current interactive re-edit, based of #496 * When renaming files that already exist, I want to delete them as they are duplicates for...
When you leave for the day and come back next day without much clue in what you did the day before. Or when you finish something and don't come back...
I'd like to be able to run a module every time a dependency module changes. **Given dummy example** `main.hcl` ```hcl param "users" {} param "dep_packages" {} module "setup-x.hcl" "setup-x" {...
## Given ``` param "node_version" { default = "1.0" } ``` **Case 1** ```hcl task.query "get-version" { query = "node version 2>/dev/null | grep '{{param `node_version`}}'" group = "install" }...
## Motivation I tend to use a `main.hcl` file and from there call all the necessary modules. **Given** **main.hcl** ``` param "cred_user" {} param "cred_password" {} module "" "setup_x" {...
## Motivation In my use case I'd like to setup shell flags across all tasks as to avoid specifying the flags in every task. It is a little bit worse...