Brice Waegeneire

Results 26 comments of Brice Waegeneire

This can be achieved with udev rules, as explained in the [ArchWiki](https://wiki.archlinux.org/index.php/Backlight#ACPI): ``` ACTION=="add", SUBSYSTEM=="backlight", KERNEL=="acpi_video0", RUN+="/bin/chgrp video /sys/class/backlight/%k/brightness" ACTION=="add", SUBSYSTEM=="backlight", KERNEL=="acpi_video0", RUN+="/bin/chmod g+w /sys/class/backlight/%k/brightness" ``` Don't forget to add...

I think it need to patch the remote tramp environment instead of the local when in a tramp directory. Some example of changes are `call-process` should be replaced by `process-file`...

I got bitten by this one too when trying the new release `2.3.0`, following is more verbose log when the issue is triggered. Hopefully my comment isn't just seen as...

An other use-case is maintaining a [`$GIT_TEMPLATE_DIR`](https://git-scm.com/docs/git-init#_template_directory) with `stow`. Since `git` will copy the content of `$GIT_TEMPLATE_DIR`, when initializing a new repo, it copies the relative symlinks to `$GIT_DIR` all...

Yes you got it right. I need this to manage my git hooks centrally and not on a per repo basis. You can see my current use in this [package](https://github.com/bricewge/dotfiles/tree/master/git):...

I apologize, I wasn't clear enough it only doesn't works when using `--no-folding`. Flowing is an example to reproduce my issue with git templates. 1. We setup the stow package:...

LGTM. Since the recent GPG keyserver [debacle](https://gist.github.com/rjhansen/67ab921ffb4084c865b3618d6955275f), if you need to use a keyserver in an example it would be a good idea to use `hkps://keys.openpgp.org` instead of `hkp://keys.gnupg.net`.

Same problem here with `v0.4.0-69-gbc24863`.

With the PR #108 it's easier to get a configured `zsh-history-substring-search` working with `zinit`, it boils down to the following: ``` sh # Your configuration for the plugins export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=#586e75'...