Skip to content

Commit

Permalink
remove print call & make keep_wakeup False by default
Browse files Browse the repository at this point in the history
  • Loading branch information
BHznJNs committed Nov 19, 2024
1 parent aaa80d7 commit 0e70347
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion input/callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ def mouse_movement_sender():
nonlocal movement_queue, wakeup_counter

def send_wakeup_signal() -> CallbackResult:
print("send wakeup signal")
key_down = InjectKeyCode(AKeyCode.AKEYCODE_WAKEUP, AKeyEventAction.AKEY_EVENT_ACTION_DOWN)
key_up = InjectKeyCode(AKeyCode.AKEYCODE_WAKEUP, AKeyEventAction.AKEY_EVENT_ACTION_UP)
for key in [key_down, key_up]:
Expand Down
2 changes: 1 addition & 1 deletion utils/config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ConfigFile:
# settings
theme: str = "system"
mouse_speed: float = 2
keep_wakeup: bool = True
keep_wakeup: bool = False
language: str = I18n.language_code() or ENGLISH_LANGUAGE

class ConfigManager:
Expand Down

0 comments on commit 0e70347

Please sign in to comment.