diff options
author | lassulus <lassulus@lassul.us> | 2020-09-27 15:45:41 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-09-27 15:45:41 +0200 |
commit | 9b5c11239956ff5cd7a24fe1ef32cd49a3aa8d26 (patch) | |
tree | 9ff562a5db25d0363169b985b9ef3f8291c30954 /lass/5pkgs | |
parent | 570ba85941e0d8756b8b000df74fbda69590699b (diff) |
l emot-menu: clearmodifiers when typing
Diffstat (limited to 'lass/5pkgs')
-rw-r--r-- | lass/5pkgs/emot-menu/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lass/5pkgs/emot-menu/default.nix b/lass/5pkgs/emot-menu/default.nix index 440e160d0..3ce635dac 100644 --- a/lass/5pkgs/emot-menu/default.nix +++ b/lass/5pkgs/emot-menu/default.nix @@ -29,6 +29,6 @@ writeDashBin "emoticons" '' data=$(${coreutils}/bin/cat ${emoticons}) emoticon=$(echo "$data" | ${dmenu}/bin/dmenu | ${gnused}/bin/sed 's/ | .*//') - ${xdotool}/bin/xdotool type -- "$emoticon" + ${xdotool}/bin/xdotool type --clearmodifiers -- "$emoticon" exit 0 '' |