mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-30 21:02:32 +01:00 
			
		
		
		
	 b11a776cef
			
		
	
	
		b11a776cef
		
	
	
	
	
		
			
			* use ctl_t * spruce up readme and add a changelog * add comment about using CTL_T * add more description * use RSFT_T so I can still have a right shift key even on the _AL layer * add config.h for rgblight_sleep * update readme to talk about rgblight_sleep * update changelog with new changes
		
			
				
	
	
		
			18 lines
		
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			343 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "quantum.h"
 | |
| 
 | |
| enum userspace_layers {
 | |
|   _BL = 0, // Base Layer
 | |
|   _FL,     // Function Layer
 | |
|   _AL      // Arrow Layer
 | |
| };
 | |
| 
 | |
| // Enum of custom keycodes defined in process_record_user
 | |
| enum keycodes {
 | |
|     KC_FNX, // Hold for FN layer, tap to toggle ARROWS layer.
 | |
| };
 | |
| 
 | |
| // Custom #defined keycodes
 | |
| #define KC_CTCP CTL_T(KC_CAPS)
 |