This commit is contained in:
2025-08-13 21:46:48 +02:00
commit c3e2e6509b
818 changed files with 54187 additions and 0 deletions

16
hypr/scripts/color_picker Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# Simple Script To Pick Color Quickly.
# pick, autocopy and get the value
color=$(hyprpicker -a)
echo "$color"
if [[ "$color" ]]; then
image=/tmp/${color}.png
# generate preview
convert -size 48x48 xc:"$color" "$image"
# notify the color
notify-send -i "$image" "$color" "Copied to clipboard"
fi