bash colors
This commit is contained in:
parent
e4ca92e83c
commit
ad98471099
@ -1,4 +1,18 @@
|
|||||||
// $ frida -Uf com.whatsapp --no-pause -l wa.js
|
// $ frida -Uf com.whatsapp --no-pause -l wa.js
|
||||||
|
/*
|
||||||
|
#!/bin/bash
|
||||||
|
for fgbg in 38 48 ; do # Foreground / Background
|
||||||
|
for color in {0..255} ; do # Colors
|
||||||
|
# Display the color
|
||||||
|
printf "\e[${fgbg};5;%sm %3s \e[0m" $color $color
|
||||||
|
# Display 6 colors per lines
|
||||||
|
if [ $((($color + 1) % 6)) == 4 ] ; then
|
||||||
|
echo # New line
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
echo # New line
|
||||||
|
done
|
||||||
|
*/
|
||||||
var Color = {
|
var Color = {
|
||||||
RESET: "\x1b[39;49;00m", Black: "0;01", Blue: "4;01", Cyan: "6;01", Gray: "7;11", Green: "2;01", Purple: "5;01", Red: "1;01", Yellow: "3;01",
|
RESET: "\x1b[39;49;00m", Black: "0;01", Blue: "4;01", Cyan: "6;01", Gray: "7;11", Green: "2;01", Purple: "5;01", Red: "1;01", Yellow: "3;01",
|
||||||
Light: {
|
Light: {
|
||||||
|
Loading…
Reference in New Issue
Block a user