blob: 032abd8094ee73fe20db4de27b437892b47fdd90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
[ -z "$1" ] && col=$(hyprpicker -an ) ||
col="$1"
sed "s/fill=.*>/fill=\"$col\">/g" $HOME/.local/share/circle.svg > /tmp/circle.svg
echo "$col" | wl-copy
notify-send -i "/tmp/circle.svg" -a "Colorpicker" "$col was successfully copied to your clipboard."
|