Skip to content
View Birnendampf's full-sized avatar

Sponsoring

@koxudaxi
Block or Report

Block or report Birnendampf

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. usefule tools for bash scripting usefule tools for bash scripting
    1
    #!/bin/bash
    2
    # String formatters
    3
    	# RGB tool allows you to enter three values on a range from 0 to 5 for red, green, and blue, which will be converted to an ANSI control sequence.
    4
    	# For more info, see here: https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit
    5
    	rgb() { printf "\033[1;38;5;$(( 16 + 36 * $1 + 6 * $2 + $3 ))m"; }