7 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			164 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| 
 | |
| FOLDER="$HOME/.dotfiles/bin/.bin/screenlayouts/"
 | |
| script=$(ls "$FOLDER" | sed 's/\.sh$//' | rofi -dmenu -p "Layout" )
 | |
| "${FOLDER}${script}.sh"
 | |
| 
 |