mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 15:59:26 -05:00
19 lines
314 B
QML
19 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)
|
|
}
|
|
}
|
|
|