diff --git a/server/internal/remote/manager.go b/server/internal/remote/manager.go index ee5cac4..2b4802e 100644 --- a/server/internal/remote/manager.go +++ b/server/internal/remote/manager.go @@ -32,12 +32,6 @@ func New(config *config.Remote) *RemoteManager { emmiter: events.New(), config: config, streaming: false, - - keyboardModifierState: { - CapsLock: false, - NumLock: false, - ScrollLock: false, - } } } @@ -227,6 +221,6 @@ func (manager *RemoteManager) SetKeyboard(layout string) { xorg.SetKeyboard(layout) } -func (manager *RemoteManager) SetKeyboard(NumLock int, CapsLock int, ScrollLock int) { +func (manager *RemoteManager) SetKeyboardModifiers(NumLock int, CapsLock int, ScrollLock int) { xorg.SetKeyboardModifiers(NumLock, CapsLock, ScrollLock) } diff --git a/server/internal/types/remote.go b/server/internal/types/remote.go index 2a76392..a4a9d04 100644 --- a/server/internal/types/remote.go +++ b/server/internal/types/remote.go @@ -23,5 +23,5 @@ type RemoteManager interface { WriteClipboard(data string) ResetKeys() SetKeyboard(layout string) - SetKeyboard(NumLock int, CapsLock int, ScrollLock int) + SetKeyboardModifiers(NumLock int, CapsLock int, ScrollLock int) }