Created
November 3, 2022 20:42
-
-
Save byrro/7a74e54f63667bbb066fa309208a6cba to your computer and use it in GitHub Desktop.
Convert pixel color picked using gdbus from float to RGB and HEX
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script is licensed under a 3-clause BSD License (ref.: LICENSE attached) | |
# License: https://opensource.org/licenses/BSD-3-Clause | |
# Nicer RGB format for gdbus color picker response | |
# Tested on Ubuntu 22.04 using Wayland desktop | |
# This is one of my first Bash scripts. Please pardon my noobiness. Just needed the job done. | |
# Dependencies: bc | |
# Get the gdbus output with colors as floats | |
response=$(gdbus call --session --dest org.gnome.Shell.Screenshot --object-path /org/gnome/Shell/Screenshot --method org.gnome.Shell.Screenshot.PickColor) | |
# Clean up the gdbus output | |
colors=${response/"({'color': <("/""} | |
colors=${colors/")>},)"/""} | |
# Split colors to an array | |
IFS=',' read -ra colors <<< "$colors" | |
# Convert to 255-based RGB format (float) | |
red=$(echo "${colors[0]} * 255" | bc) | |
green=$(echo "${colors[1]} * 255" | bc) | |
blue=$(echo "${colors[2]} * 255" | bc) | |
# 255-based RGB format (integer) | |
red=${red%%.*} | |
green=${green%%.*} | |
blue=${blue%%.*} | |
echo "RGB: $red $green $blue" | |
printf 'HEX: #%02x%02x%02x\n' "$red" "$green" "$blue" | |
printf 'HEX: %02x%02x%02x\n' "$red" "$green" "$blue" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Copyright 2022 Renato Byrro | |
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This doesn't work
@philFernandez you can try to change the first line to #!/bin/bash
Btw thanks @byrro, awesome script!
I made a small change using zenity :D
result=$(printf 'HEX: #%02x%02x%02x\n' "$red" "$green" "$blue")
zenity --info --title="Captured color" --text="${result}"
Thanks for the script @byrro and @guilhermecomum, worked perfectly, only added the RGB output to the zenity as well (can be usefull somethimes)
result=$(printf 'RGB: %.0f %.0f %.0f\nHEX: #%02x%02x%02x\n' "$red" "$green" "$blue" "$red" "$green" "$blue")
zenity --info --title="Captured color" --text="${result}"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This doesn't work