Results 25 comments of Stephen Seo

I think it may be possible to use a custom script that takes the `iptables ...` command and uses `iptables-translate ...` to convert the `iptables ...` command to an `nft...

I must note that the bug exists because by default, the Rust `carbonyl` lib links against the system `glibc` which is newer than the `glibc` packaged with chromium in `debain...

I think this has to do with chromium being bundled with libs from a "debian sysroot". ``` objdump -x "carbonyl/chromium/src/build/linux/debian_bullseye_amd64-sysroot/lib/x86_64-linux-gnu/libc-2.31.so" | grep -P '\sGLIBC(..)?_\d+\.\d+(\.\d+)?$' | cut -d' ' -f4 |...

So I found a fix, but I don't think I can make a pull request yet since it only works for x86_64 targets. I'm not sure of the process where...

Latest commit has changes only in the `build.rs` in the root of the project directory. Should make it easier to do target specific stuff if all the changes are only...

Made a PR https://github.com/fathyb/carbonyl/pull/134 . This should fix the bug for x86_64 and x86 builds for ArchLinux and Gentoo (only tested on Arch). It uses a `build.rs` at the root...

I tested a basically no-op program: ``` int main() { return 0; } ``` If compiled with `gcc -fsanitize=address -o test noop_program.c` and run, then it will crash. Without the...

I've been doing some testing with this issue, and tried running `sway -V` and `swayidle -d`. What shows up when sway's stdout and stderr is piped into a file after...

I installed `sway-git` and friends again and attempted to reproduce the freeze, and it happened when `dpms off` was triggered but the lock-screen didn't engage yet, so perhaps the issue...

The thing is, this bug has never occurred to me when using the current release of `sway`, and only with `sway-git` (and friends). So I suspect some implementation change in...