In X11 I have many keyboard shortcuts that result in various pieces of text being typed into whatever application I'm using. A representative example is typing a timestamp when I press Ctrl+Alt+d. This is done by setting the following command as a keyboard shortcut:
bash -c "sleep 0.1; xvkbd -text $(date "+%Y-%m-%dT%H%MZ" --utc) 2>/dev/null"
These shortcuts are essential to me and I use them perhaps once every minute. How can the same functionality be achieved in Wayland?
0 Answers