7 lines
216 B
Bash
Executable file
7 lines
216 B
Bash
Executable file
#!/bin/bash
|
|
|
|
theme="$HOME/.config/rofi/clipboard.rasi"
|
|
|
|
cliphist list | rofi -dmenu -i -p "Clipboard:" \
|
|
-theme "${theme}" \
|
|
| cliphist decode | wl-copy
|