Files
illogical-impulse/dots/.config/quickshell/ii/modules/common/functions/Levendist.qml
T
2025-10-21 22:58:26 +02:00

19 lines
363 B
QML

pragma Singleton
import Quickshell
import "levendist.js" as Levendist
/**
* Wrapper for levendist.js to play nicely with Quickshell's imports
*/
Singleton {
function computeScore(...args) {
return Levendist.computeScore(...args)
}
function computeTextMatchScore(...args) {
return Levendist.computeTextMatchScore(...args)
}
}