rany2

Results 312 comments of rany2

It is possible by checking if the vendor-specific elements that is being transmitted. Take a look at https://learn.microsoft.com/en-us/windows-hardware/drivers/mobilebroadband/network-cost-information-element for information on how it could be implemented. Android also checks if...

You mean it's out of sync after 50 minutes?

https://github.com/refi64/cobalt/pull/10 might fix it.

@Angxddeep In the meantime, can you confirm that setting environ `CHROME_DESKTOP` to `com.brave.Browser.desktop` fixes it? You can do this with `flatpak run --env=CHROME_DESKTOP=com.brave.Browser.desktop com.brave.Browser`.

Did you kill old instances of Brave before running it? (`flatpak kill com.brave.Browser`)

I've actually fixed this issue upstream in Cobalt. I think this issue should be closed.

That fix you sent is equivalent to what I've asked to do previously, specifically setting CHROME_DESKTOP. I wonder if Brave renamed that to BRAVE_DESKTOP, the odd thing is that the...

For someone facing this issue, the following workaround seems like it works OK. Define a new runtime at `/etc/containers/containers.conf.d/50-nvidia-runtime.conf`: ```ini [engine.runtimes] nvidia = ["/usr/bin/nvidia-container-runtime"] ``` Use `runtime: nvidia` in the...

> According to the [Compose Specification](https://github.com/compose-spec/compose-spec/blob/231b09c30d339e950c0da17fe5bdc793366b8fde/05-services.md#devices), `devices` must be in the form `HOST_PATH:CONTAINER_PATH[:CGROUP_PERMISSIONS]`. Shouldn't the spec be corrected given that CDI devices exist? I think CDI devices are a relatively...

> Specifically for Podman, there is [`podman run --gpus`](https://docs.podman.io/en/stable/markdown/podman-run.1.html#gpus-entry) (added in Podman v5.0.0), so you could add `PodmanArgs=--gpus all` to the generated `.container` Quadlet file. I actually preferred the runtime...