Files
colorshell/hypr/scripts/clipboard-menu.sh
T
2025-02-04 21:45:47 -03:00

8 lines
187 B
Bash

#!/usr/bin/env bash
selection=$(cliphist list | anyrun --plugins libstdin.so | cliphist decode)
if [[ ! -z "$selection" ]]; then
echo -e $selection | sed -e 's/\n$//g' | wl-copy
fi