dotfiles/.local/bin/scripts/wl-save

6 lines
210 B
Text
Raw Normal View History

2024-09-15 17:42:56 +03:00
#!/bin/sh -e
# Save wl clipboard image with last copied url
2025-02-04 11:52:56 +01:00
file="$(date +%y%m%d-%H%M%S)_$(cliphist list | grep --max-count 1 https:// | sed 's|/$||' | rev | cut -d/ -f1 | rev).png"
2024-09-15 17:42:56 +03:00
wl-paste >"$file"
b "$file"