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

19 lines
312 B
QML

pragma Singleton
import Quickshell
import "fuzzysort.js" as FuzzySort
/**
* Wrapper for FuzzySort to play nicely with Quickshell's imports
*/
Singleton {
function go(...args) {
return FuzzySort.go(...args)
}
function prepare(...args) {
return FuzzySort.prepare(...args)
}
}