Hugo
Hugo
Quite true. I guess the only options are to chose one of the following: - Remain compatible with exa. - Remain compatible with ls.
> I haven't looked at the argument parsing code—is this kind of disambiguation for ls compatibility likely to be complicated to implement? I implemented it and it works on many...
There's a proposal in `swaywm` to implement something like this. The tentative docs are: ``` *split* vertical|v|horizontal|h|none|n|toggle|t Splits the current container, vertically or horizontally. When _none_ is specified, the effect...
Most Electron flatpaks **don't** pass the Wayland socket out-of-the-box, so even if XWayland failed to start and `DISPLAY` was unset, `WAYLAND_DISPLAY` still won't be set, and we wouldn't be falling...
LGTM. Needs rebase (has conflicts).
Personally, I already had these implemented before migrating to `django-payments`. My `Order` model handled discounts and the `total_price` was the subtotal minus discount. So my payment model gets the total...
You need to subclass `BasePayment`: https://django-payments.readthedocs.io/en/latest/payment-model.html Your `Payment` class can have data for the items itself, or can have a ForeignKey to a `Purchase` model or whatever you're using.
FWIW, I also tried using `objcopy` directly like this: ```shell objcopy \ --preserve-dates \ --enable-deterministic-archives \ --add-section ".kernel=$KERNEL" --set-section-flags .kernel=code,readonly \ --add-section ".cmdline=$CMDLINE" --set-section-flags .cmdline=data,readonly \ --add-section ".initrd=$INITRD" --set-section-flags .initrd=data,readonly...
Looks like `--change-section-vma` is required (and `mkuki` is specifying it), but the addresses need to be relative to the ImageBase, which is simply different for my binary: ```console > objdump...
I couldn't figure out how to make this work with `efi-mkuki`; I still don't fully understand all the parts in play here. At the time, I wrote my own custom...