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
| from PIL import Image | |
| import struct | |
| # Options to set up | |
| file = "iceland.jpg" | |
| dither = True | |
| showPreview = True | |
| # Palette code based off of https://stackoverflow.com/a/29438149/2303432 |
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
| // ==UserScript== | |
| // @name SchemeColor.com Copy Button | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description copy color palette from SchemeColor | |
| // @author Andrew McOlash | |
| // @match https://www.schemecolor.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=schemecolor.com | |
| // @grant GM_setClipboard | |
| // ==/UserScript== |
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 | |
| ### Steam Deck dev tools install script ### | |
| # This script needs to be run as root | |
| if [ "$EUID" -ne 0 ] | |
| then echo "Please run this script as root (with sudo)" | |
| exit | |
| fi |
OlderNewer