Preview
This file contains hidden or 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/bash | |
# My Fork of Who23's statify script, changed to kitty image protocol | |
# A script to display current spotify track info in a small terminal window | |
# this includes art, track name, and artist. All art/text centered | |
# Copyright 2020 Aditya Shrivastava | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of this | |
# software and associated documentation files (the "Software"), to deal in the Software |
This file contains hidden or 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
iVBORw0KGgoAAAANSUhEUgAAAQAAAAEACAYAAABccqhmAAAgAElEQVR4nOy9CbhlWVUmuPaZ7vSmmMfMjIycyEwQSGQ0zU4KBSksW6Xlk7ZUbCwU5aMVLRDF8mEBMklaoImin1LalhaprVZjo1TZKOAABQnknGTkEPPwIl7EG+5wpr37W3u6++yzz333RbyIuHHjrvhuvHvPPOy19lr/mmBCE5rQhCY0oQlNaEITmtCEJjShCU1oQhOa0IQmNKEJTWhCE5rQhCY0oQlNaEITmtCVT2TyDsePfud3fidst9vB8vJyWKvVfNrYGqW9Ti0K/TqjeZSTsOYRCIGxAG+eUsq8IEhJHvcohTinLAY/6kFQS2D5SAYA2a5du9I3velNGSGEXe3Pd6OJsY19pIQMz9YTAXCF00c/+tHa4uJiDZrbmh6Nt6QUtkZR/VuiKNrXbNR2hWG0tRZEM2E9qHueVw/DKIqiMPLAD4gHHgEGDAjQjOZJFidJksQ5I90sTXtpmiylSbLYS9LjnU7nUJpmz9R8+nRKvUXonV2emZmJl5eX4/n5eXq1v4cLoYkAmNDQJBm+AbWZrZ4f7Gk0Gnc1W1PPnplqXV+rRdtaU1NbNs3NTc/MzEC9XodaFEIYhuD7PrK8GBzMA88HIIwAeGIA5pQBUAD8k6UJ5HkOcZJCkiTQ7Xah0+nA2bPnOu12ezHN0jPdbny00+0+du7s4tcJy78e0N6JJEnaANCbCIT10UQATGggzc/PN4OZHZtonu+dnZl+5VSr+aIwDG/asnXr7t27dk3PzkxDq9WCuWYAQRDwAYCzeg79gcXMV43s6RUHHl8vlyutANerv1xYEMoFw9JSmwuE5ZVVWFxcTBcWFo7FcXK00+t9fWlp6fNZEn8V4uVTt912W/t1r3tdPujeJjQRABNy0Ec+8pFGBxqb8zS5eW525rVBGL1433XX7d+1a+fmzZs3w85NTc7sOLNrRiXyb87EMvlBYrTPh3qZMfD4oCEeZ37+1xxExOMfRtSx |
I hereby claim:
- I am sourtaste000 on github.
- I am sourtaste000 (https://keybase.io/sourtaste000) on keybase.
- I have a public key ASCTJucqAuzAEUPvlPQ6o7uMy8OxFsDfdrPu9d042Yqm5Qo
To claim this, I am signing this object:
This file contains hidden or 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
b c d e f g h i j k l m | |
o o p q r s a c j i b k | |
b a t u v w x y z j u a | |
l d t i b y q f p a t a | |
i a d r s a t u s l c y | |
q a s t y s a t u d h o | |
u a f g a s u a s t g n | |
e z b a s f 0 e 1 5 8 1 | |
g a t m e u w 1 1 4 8 q | |
i t g t y y u 2 5 7 7 9 |
This file contains hidden or 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
var rainbow = ["red", "yellow", "pink", "green", "purple", "orange", "blue"]; | |
function rainbowify(string) { | |
var splitString = string.split(""); | |
var formatString = ""; | |
var colorArguments = []; | |
for (var i = 0; i < splitString.length; ++i) { | |
formatString += "%c" + splitString[i]; | |
colorArguments.push("color : " + rainbow[i % rainbow.length]); |
NewerOlder