Wez Furlong
Wez Furlong
If you try commenting out one or the other (or both) of these lines, does it get better? ``` config.window_background_opacity = 0.7 config.win32_system_backdrop = 'Acrylic' ```
Sounds like an issue with your graphics drivers, as those options don't change the way that wezterm directly works, they just set flags for your OS compositor.
Thanks, but this shouldn't be needed if you follow the https://wezfurlong.org/wezterm/install/source.html instructions. What's different about your environment/setup that results in you needing this?
Can you rebase this PR so that I can tell the CI to run? Thanks!
This gist has some one-liners for spinning up a web server for static content: https://gist.github.com/willurd/5720255 eg: ``` cargo doc && cd target/doc && python3 -m http.server 8000 ``` will spin...
@qmx it works, thanks!
Note that we already show memory usage in `kcli top`. re: iowait, is that actually a useful metric? That's the cumulative time spent waiting on IO. All our IO is...
FWIW, we don't recommend suspensions that are shorter than the retry interval, because very short suspensions are unlikely to be especially effective, and you'll encounter the situation you described. You...
when you curl from your docker host and into the docker container, your source address is not the loopback, it's a different network address that is randomly determined by your...
You can also use curl, from within the container, if you install it first: ```console $ docker exec 2a6c7c908af3 bash -c "apt update; apt install -y curl" ... $ docker...