25 lines
		
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			500 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/*
 | 
						|
*               dotfiles - fzf.ts
 | 
						|
*
 | 
						|
*   Created by Janis Hutz 03/30/2025, Licensed under the GPL V3 License
 | 
						|
*           https://janishutz.com, development@janishutz.com
 | 
						|
*
 | 
						|
*
 | 
						|
*/
 | 
						|
 | 
						|
import AstalApps from "gi://AstalApps?version=0.1"
 | 
						|
 | 
						|
// TODO: For all astal apps, read a global colours config file
 | 
						|
const fzfApplication = ( query: string ) => {
 | 
						|
    const apps = new AstalApps.Apps()
 | 
						|
    return apps.fuzzy_query( query );
 | 
						|
}
 | 
						|
 | 
						|
const fzfCmd = ( query: string ) => {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
export default {
 | 
						|
    fzfApplication
 | 
						|
}
 |