9 lines
		
	
	
	
		
			326 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			326 B
		
	
	
	
		
			Text
		
	
	
	
	
	
!#/bin/bash
 | 
						|
       swaymsg -t get_tree |
 | 
						|
         jq -r '.nodes[].nodes[] | if .nodes then [recurse(.nodes[])] else []
 | 
						|
       end + .floating_nodes | .[] | select(.nodes==[]) | ((.id | tostring) +
 | 
						|
       "" + .name)' |
 | 
						|
         wofi --show dmenu | {
 | 
						|
           read -r id name
 | 
						|
           swaymsg "[con_id=$id]" focus
 | 
						|
       }
 |