Skip to content

Commit

Permalink
Further fix xdotool calls
Browse files Browse the repository at this point in the history
  • Loading branch information
fdw committed Apr 29, 2024
1 parent 44f306b commit ea56ee5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/rofi_rbw/rofi_rbw.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ def __configure_targets(self, cred: Credentials) -> List[Target]:
return [Targets.USERNAME, Targets.PASSWORD]

def __type_targets(self, cred: Credentials, targets: List[Target]):
print(targets)
for target in targets:
if target == TypeTargets.DELAY:
time.sleep(1)
Expand Down
2 changes: 1 addition & 1 deletion src/rofi_rbw/typer/xdotool.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def type_characters(self, characters: str, key_delay: int, active_window: str) -

def press_key(self, key: Key) -> None:
if key == Key.ENTER:
key_name = "enter"
key_name = "Return"
elif key == Key.TAB:
key_name = "Tab"
else:
Expand Down

0 comments on commit ea56ee5

Please sign in to comment.