diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-03-06 18:00:14 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-03-06 18:00:14 +0100 |
commit | f5382b4d53ce723c6eb4ba87013c0a13d0c56a92 (patch) | |
tree | 8d1b3f7d7b766a4757b1de06e7363f219b7fd382 | |
parent | df65a9ccbe5d3c9c46126626a4d91ad74e7ab179 (diff) |
fix password entry
-rw-r--r-- | .config/rofi-pass/config | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.config/rofi-pass/config b/.config/rofi-pass/config index 595fb51..9c81936 100644 --- a/.config/rofi-pass/config +++ b/.config/rofi-pass/config @@ -14,10 +14,12 @@ _rofi() { } _do_type_xdotool() { - fcitx5-temp-off + fcitx5-temp-off # see ~/.local/share/bin - # this is the default command - xdotool type --delay ${type_delay} --clearmodifiers --file - + # tr -d required because the "path" variable ends in a newline character + tr -d '\n' |\ + xdotool type --delay ${type_delay} --clearmodifiers --file - + # xdotool command is otherwise not modified fcitx5-temp-restore } |