ea7a8bf2d9
ckb is a driver for Corsair keyboards/mice. It also contains a graphical tool for configuring their LED backlight settings. The driver is implemented as a userland daemon. A NixOS module is included that runs this as a systemd service.
13 lines
532 B
Diff
13 lines
532 B
Diff
diff --git a/src/ckb/animscript.cpp b/src/ckb/animscript.cpp
|
|
index d0b7f46..d7a3459 100644
|
|
--- a/src/ckb/animscript.cpp
|
|
+++ b/src/ckb/animscript.cpp
|
|
@@ -30,7 +30,7 @@ QString AnimScript::path(){
|
|
#ifdef __APPLE__
|
|
return QDir(QApplication::applicationDirPath() + "/../Resources").absoluteFilePath("ckb-animations");
|
|
#else
|
|
- return QDir(QApplication::applicationDirPath()).absoluteFilePath("ckb-animations");
|
|
+ return QDir(QApplication::applicationDirPath() + "/../libexec").absoluteFilePath("ckb-animations");
|
|
#endif
|
|
}
|