mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
18 lines
314 B
QML
18 lines
314 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)
|
|
}
|
|
}
|
|
|