extra pt2

This commit is contained in:
2026-03-09 17:34:14 +00:00
parent 457fb2068b
commit e0c4c2ed7b
14 changed files with 310 additions and 21 deletions

9
.local/bin/clipboard-menu Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Clipboard menu using cliphist and rofi
selection=$(cliphist list | rofi -dmenu -p "Clipboard")
# Only copy if something was actually selected
if [ -n "$selection" ]; then
echo "$selection" | cliphist decode | wl-copy
fi