Files
dotfiles/rofi/scripts/clipboard/clipboard
2025-08-13 21:46:48 +02:00

9 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