21 lines
491 B
Go
21 lines
491 B
Go
package config
|
|
|
|
import (
|
|
"git.stormux.org/storm/barnard/uiterm"
|
|
)
|
|
|
|
type Hotkeys struct {
|
|
Talk *uiterm.Key
|
|
VolumeDown *uiterm.Key
|
|
VolumeUp *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
|
|
}
|