Ojas

Results 7 comments of Ojas

Yeah it's probably better to handle missing resources in the books interface, rather than this band-aid fix. Just so I'm understanding it correctly, you're proposing something like a `transform.js` that...

Running into a similar issue on macOS. I've configured kanata to run as a daemon through launchd which works wonderfully. Can't do that with kanata-tray since LaunchDaemons run in the...

@mhantsch Thanks! I was kind of looking for a quick way to toggle kanata on or off through the tray though :(

> You could just create a transparent layer in kanata and switch to and from that. Probably my best option right now, thanks! > Are you getting a crash if...

I'm getting basically the same output on my BenQ GW2480 on running `ddcutil detect --verbose --ddcdata`: ``` DDC: All zero response detected in ddc_i2c_write_read_raw DDC: All zero response detected in...

You can also do ```javascript function WiFi() { const toggleWifi = () => { self.toggleClassName("pill", wifi.enabled); self.toggleClassName("apill", !wifi.enabled); } return { toggleWifi(); self.hook(wifi, "enabled", (self) => toggleWifi); }} > {/*...

Typically you'd just do ```typescript main() { App.get_monitors().map(Bar); Applauncher(); } ```