23 lines
		
	
	
		
			563 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			563 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package config
 | |
| 
 | |
| import (
 | |
|     "git.stormux.org/storm/barnard/uiterm"
 | |
| )
 | |
| 
 | |
| type Hotkeys struct {
 | |
|     Talk             *uiterm.Key
 | |
|     VolumeDown       *uiterm.Key
 | |
|     VolumeUp         *uiterm.Key
 | |
|     VolumeReset      *uiterm.Key
 | |
|     MuteToggle       *uiterm.Key
 | |
|     Exit             *uiterm.Key
 | |
|     ToggleTimestamps *uiterm.Key
 | |
|     SwitchViews      *uiterm.Key
 | |
|     ClearOutput      *uiterm.Key
 | |
|     ScrollUp         *uiterm.Key
 | |
|     ScrollDown       *uiterm.Key
 | |
|     ScrollToTop      *uiterm.Key
 | |
|     ScrollToBottom   *uiterm.Key
 | |
|     NoiseSuppressionToggle *uiterm.Key
 | |
| }
 |