You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			631 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			631 B
		
	
	
	
		
			Bash
		
	
| #!/bin/bash
 | |
| ## Start Chrome windows of logging services
 | |
| ## Written May 18, 2018
 | |
| ## Taha Ahmed
 | |
| 
 | |
| # https://www.linuxjournal.com/magazine/hack-and-automate-your-desktop-wmctrl
 | |
| 
 | |
| a="https://192.168.1.1:8443"
 | |
| b="https://graylog.asks.se"
 | |
| c="http://192.168.1.105/admin"
 | |
| d="https://deluge.chepec.se"
 | |
| e="https://trickle.deluge.chepec.se"
 | |
| f="https://status.asks.se/tls/all"
 | |
| 
 | |
| # start Chrome as app windows
 | |
| google-chrome --new-window --app=$a &
 | |
| google-chrome --new-window --app=$b &
 | |
| google-chrome --new-window --app=$c &
 | |
| google-chrome --new-window --app=$d &
 | |
| google-chrome --new-window --app=$e &
 | |
| google-chrome --new-window --app=$f &
 | |
| 
 | |
| 
 | |
| exit 1
 |