MahouShoujoMivutilde

Results 31 comments of MahouShoujoMivutilde

Do you actually need fish as a default user's shell, or do you want it as an _interactive shell_ first and foremost? If the latter - don't change the default...

Can't you just connect 2 monitors, 2 mouse/keyboards and run 2 hyprlands with different configs (different users too) mapping said devices? IDK, maybe you can't, just throwing idea out there....

Maybe have a service to setup multiple seats at boot with their devices ? ``` ❯ loginctl seat-status seat0 seat0 seat0 Sessions: *1 Devices: ├─/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 │ input:input1 "Power Button" ├─/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0...

> All links you referenced also had one graphics card per user. I think this is because Login Managers, WMs, and Xorg all open the graphics card, and not any...

> This looks like it is not easy to setup. Oh yeah Also found: > Multiseat with only a single DRM driver is not possible so far. This > is...

Lf copies a file in relatively small chunks of fixed size (4KB) https://github.com/gokcehan/lf/blob/ce1211641830029000f7f3c56444dc509487d6b2/copy.go#L51-L86 which could be suboptimal. In an ideal world it would use `io.Copy()` (which could benefit from `copy_file_range()`...

I don't think so, staticcheck gives me a bunch of type errors and an infinite recursive call. But let's assume it's a skill issue on my part and/or author forgot...

**TL;DR: make `buf = 32*1024`, it'll get you to `cp` speed (proof below).** (but it will not make really cool shit like reflinks or server side copy work, hence my...

But how does it affect copying a directory with a bunch of smaller files (e.g. 4.4GB of pictures)? `copyAll() took 28.392770906s; nums set as copyBytesChan as 1024; buf = 4096;...

Replace `%{{` with `${{`. Why do you even want a shell-pipe for such an interactive use case? Btw, you could just `read -r -n 1 choice` instead of `choice=$(.....)`.