21 lines
		
	
	
	
		
			277 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			277 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| actions=(
 | |
|   "quick"
 | |
|   "move"
 | |
|   "split"
 | |
|   "fetch-client"
 | |
|   "fetch-channel"
 | |
|   "migrate"
 | |
|   "away"
 | |
|   "not-away"
 | |
|   "back"
 | |
|   "message"
 | |
|   "message-client"
 | |
|   "events"
 | |
|   "events-ntfy"
 | |
| )
 | |
| 
 | |
| action=$(echo "${actions[@]}" | tr ' ' '\n' | $DMENU)
 | |
| 
 | |
| if [ -n "$action" ]; then
 | |
|   $0 "$action"
 | |
| fi
 |