mirror of
				https://github.com/Mastermindzh/dotfiles.git
				synced 2025-11-04 02:38:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			199 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
# startup stuffs
 | 
						|
 | 
						|
#/bin/bash
 | 
						|
displays=($(xrandr | awk '/ connected /{print $1}'))
 | 
						|
selected_display="${displays[0]}"
 | 
						|
xrandr --output "$selected_display" --brightness 0.75
 | 
						|
 | 
						|
# power savings
 |