- adjusted and consolidated font after playing around - cleaned up luna code so its easier to read and configure - overhauled the layout, making it less busy but still functional - adjusted the combos to move tab and add back mb1
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			291 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
/* OLED
 | 
						|
*
 | 
						|
* https://docs.qmk.fm/#/feature_oled_driver
 | 
						|
* 
 | 
						|
*/
 | 
						|
 | 
						|
//Clear variables we plan to use that might be set elsewhere
 | 
						|
#undef OLED_TIMEOUT
 | 
						|
#undef OLED_FONT_H
 | 
						|
 | 
						|
//Set common configuration for all keyboards
 | 
						|
#define OLED_TIMEOUT 60000 //1 min
 | 
						|
#define OLED_FONT_H "./lib/font.c"
 |