dotfiles/.config/rofi/scripts/clipboard/clipboard
2024-10-16 13:05:10 +02:00

8 lines
209 B
Bash
Executable file

#!/bin/bash
if ! command -v cliphist >/dev/null 2>&1; then
notify-send "Program not found" "Make sure you have installed cliphist"
exit 1
else
cliphist list | rofi -dmenu | cliphist decode | wl-copy
fi