mirror of
				https://github.com/tiyn/dotfiles.git
				synced 2025-10-31 04:21:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			293 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| active=$(nmcli connection show --active | grep vpn | cut -d' ' -f1)
 | |
| [[ ! -z "$active" ]] && { prompt "disconnect from $active?"  || exit 1; }
 | |
| [[ ! -z "$active" ]] && nmcli connection down $active
 | |
| conn=$(nmcli connection | grep vpn | cut -d' ' -f1 | dmenu)
 | |
| nmcli connection up $conn
 |