Cork
Cork
I'm seeing the same problem as reported in #274. Not sure if this helps but this is a stacktrace from the problem. (running antimicrox with some warnings commented out and...
What seams to happen is that the timers aren't started so turbo has no effect what so ever (not sure if toggle uses timers)
Seams to be a bug with the inotify implementation: ```go package main import ( "github.com/rjeczalik/notify" "github.com/davecgh/go-spew/spew" ) func main() { events := make(chan notify.EventInfo, 10) if err := notify.Watch("/tmp/test/...", events,...
OK so inotify gets a rouge `0x40000000` value, not sure what it means. It isn't listed in the man page...: ```go package main import ( "github.com/davecgh/go-spew/spew" "github.com/rjeczalik/notify" ) func main()...
```go name := event.Event().String() mask := event.Sys().(*unix.InotifyEvent).Mask if name == "notify.Rename" && (mask&unix.IN_MOVE_SELF) != 0 { continue } else if name == "notify.Remove" && (mask&unix.IN_DELETE_SELF) != 0 { continue }...
[vscodium.log](https://github.com/VSCodium/vscodium/files/12572481/vscodium.log) Same problem on archlinux with a straight installation from VSCodium-linux-x64-1.82.0.23250.tar.gz. Can't find any symbols so the stackstrace isn't of much help...
For me it seams it is wayland in later vscodium that is broken. If i force it over into xwayland it starts up normally. https://github.com/electron/electron/issues/37531