Isaac Oscar Gariano
Isaac Oscar Gariano
I'm not sure if this is the same bug or a different one, But I wanted to do something like this ``` echo foo >/nonexistent/path 2>/dev/null ``` Where any write...
I also found the lack of this feature annoying, my usecase was simply `(status dirname)/some-program args...` (i.e. execute the filed called `some-program` that is in the directory of the current...
> `exclude_from_weak_autodetect` - This feature prevents `dnf5 upgrade` from reinstalling weak dependencies that have already been removed. Oh that's why my reinstall trick wasn't working. I've now set this to...
> Hi, for the `repoquery` command you can use the `--latest-limit=1` for this purpose. This way the command will return only the highest available version for each architecture. Maybe we...
Thanks for the `--latest-limit=1` tip, the script I was trying to write before now works: ```fish #!/usr/bin/fish cd /usr/src/packages/SRPMS/ # I have to use a custom queryformat to hide the...
If anyone wants to test there own terminal emulator, you can use this script (if anyone knows of another script that tests more features, or where to get more codes...
>> `--background=default`: emit `\e[49m` > > --background=normal already does that since > [7bdb561](https://github.com/fish-shell/fish-shell/commit/7bdb561d2404c36c920d97362679693aea554a92) (builtin set_color: stop resetting unrelated attributes > on --background=normal, 2025-04-23) > (Of course --background=normal and --underline-color=normal are...
> Instead of abbreviating things I'd call it "default-color", I did that to match with `brred`! (`bright-red` would have been so much better). > but even better, we could use...
> From the looks of it this would add a commit automatically fixing some issues like formatting (and possibly PO files for us). This would make it somewhat more convenient...
> If you add "build_tools/style.fish" next to > "build_tools/update_translations.fish" you won't need to modify > "build_tools/check.sh", right? Sure, but then it needs to run twice (`build_tools/style.fish --all` can take over...