Luke Horwell

Results 429 comments of Luke Horwell

As a **guess**, this keyboard might not be "cooperating" when the daemon starts. After all, the device is asked a bunch of stuff like serial, DPI, brightness, poll rate, etc...

Oops, should've been `fx.misc.backlight` instead of `fx.advanced.backlight`, my bad. Just realised since you have 2 devices, `devices[0]` could be either one of them. This script would be more robust if...

Sorry, I wasn't clear. The new code replaced the last line of the original script, so you'll need this line after `import`: devman = openrazer.client.DeviceManager() I amended the [earlier comment](https://github.com/openrazer/openrazer/issues/2066#issuecomment-1722241578).

Sure, you can target a device name, like so: ```python3 #!/usr/bin/python3 import openrazer.client devman = openrazer.client.DeviceManager() for device in devman.devices: if "Basilisk" in device.name: device.fx.misc.logo.none() device.fx.misc.scroll_wheel.none() if "Huntsman" in device.name:...

Remove the `device.fx.misc.scroll_wheel.none()` line. I must have mistakenly thought I saw the mouse having a `scroll_wheel` zone. The script should work next time.

It's likely not executing because Python is picky about indention. They need to be consistent (i.e. use 4 spaces, not mixing with tab indents), like line 7: ```diff if "Basilisk"...

This sounds like similar firmware behaviour to a Chroma HDK I have. If the device is powered on while at zero brightness on a static effect, it's like the effect...

In theory, the device being reconnected again should restore the original state. Is persistence enabled in `~/.config/openrazer/razer.conf`? ```ini [Startup] restore_persistence = True ``` (There is also `~/.config/openrazer/persistence.conf` worth checking)

That's my bad for the misleading UI label. I'll amend it. > The persistence.conf file is created/updated regardless whether or not the restore persistence is enabled. That's correct. When settings...

This is what I've gathered from this mouse: * Naga Trinity supposedly supports a custom matrix ("advanced effects"), but it wasn't implemented properly in the driver - #1305 * Naga...