You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							463 B
						
					
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							463 B
						
					
					
				#compdef swaybar
 | 
						|
#
 | 
						|
# Completion script for swaybar
 | 
						|
#
 | 
						|
 | 
						|
local bars=($(swaymsg -t get_bar_config | jq -r '.[]'))
 | 
						|
 | 
						|
_arguments -s \
 | 
						|
	'(-h --help)'{-h,--help}'[Show help message and quit]' \
 | 
						|
	'(-v --version)'{-v,--version}'[Show version and quit]' \
 | 
						|
	'(-s --socket)'{-s,--socket}'[Connect to sway via socket]:filename:_files' \
 | 
						|
	'(-b --bar_id)'{-b,--bar-id}'[Bar ID for which to get the configuration]:filename:($bars)'\
 | 
						|
	'(-d --debug)'{-d,--debug}'[Enable debugging]'
 |