Ian
Ian
also i might be able to fix the github actions by using https://github.com/cachix/install-nix-action and `nix develop`
thats interesting. using nix cuts the runner runtime from 1m40s to 55s. nice
also since [some distros](https://repology.org/project/rofi/versions) still use rofi 1.7.5, we should probably put a warning here somewhere that this commit needs rofi >= 1.7.6. where should I put it?
i've tried with `async=true`, git-cmp still overrides friendly-snippets. `build`, `feat`, `chore` etc, only trigger with git-cmp trigger characters (`:`, `#`)
yup, can confirm no issues on blink.cmp latest
this might help https://github.com/davatorium/rofi/commit/6b9dc1d0819fbde20b35c8ab20592f57a445611c this uses combi with a prefix `!c` for calc but since the output of rofi-calc is in message and not in elements, the output won't be...
for this to happen a qt6ct port of https://github.com/catppuccin/qt5ct must be made see https://github.com/catppuccin/catppuccin/discussions/2624
I've done some digging in rofi and the ff. functions implement some form of custom rofi argument flags and custom config entries: - [`mode_set_config`](https://github.com/davatorium/rofi/blob/57edcb449a6b294d115a9672d32bdc18c8947c06/source/mode.c#L205) - automatically uses `cfg_name_key` to set...
i've found an implementation of `rofi_theme_find_property` https://git.sr.ht/~qball/rofi-ntfy/tree/master/item/src/rofi_ntfyplugin.c#L253 i think that the best option is `config_parser_add_option` as adds argument flags, config entries, help entries and is used by mode_set_config. also a...
oh shoot `config_parser_add_option` is not public, my mistake. will create the issue. also thanks.