8 lines
209 B
Bash
Executable file
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
|