11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| TARGET_DIR=share/backgrounds/kali-16x9
 | |
| rm $TARGET_DIR/*.png
 | |
| 
 | |
| for f in share/backgrounds/kali/*-16x9.png; do
 | |
|     target=$(basename $f)
 | |
|     target="${target%%-16x9.png}.png"
 | |
|     ln -vsrf $f $TARGET_DIR/$target
 | |
| done
 | 
