Files
workspace/arch-user/bin/sway/paste-from-history.sh
2025-10-26 10:43:48 +00:00

8 lines
170 B
Bash
Executable File

#!/bin/sh
item="$(cliphist list | ~/.local/bin/menu/vertical.sh -p paste)"
if [ -n "$item" ]; then
echo "$item" | cliphist decode | wl-copy
wtype -M ctrl v -m ctrl
fi