Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
My Vimrc | 148 | 9 months ago | Vim Script | |||||||
VIM configuration file: used to write Golang, Python, Markdown, etc. with VIM on macOS | ||||||||||
Colorbook | 147 | 3 years ago | mit | JavaScript | ||||||
🎨 Color schemes for UI design - Optimized for foreground, background, border, etc. https://liyasthomas.github.io/colorbook | ||||||||||
Code2img | 62 | 6 months ago | 3 | November 11, 2020 | 1 | mit | Go | |||
generating images of source code | ||||||||||
Base16 Windows Terminal | 30 | a month ago | 1 | mit | Mustache | |||||
Base16 for Windows Terminal | ||||||||||
Colorsniffer | 2 | 4 years ago | 2 | apache-2.0 | Kotlin | |||||
Color pallette generation companion app for Last Launcher | ||||||||||
Mono | 1 | 4 years ago | 1 | mit | JavaScript | |||||
Gerador de paletas de cores monocromáticas |
code2img
can generate image of source code.
This was inspired by carbon and silicon
$ code2img
code2img - generate image of source code
Version: 1.2.0
Usage:
$ code2img -t monokai main.go main.png
$ echo 'fmt.Println("Hello World")' | code2img -ext go -t native -o sample.png
$ code2img -c main.go
-t color theme(default: solarized-dark)
-o output file name(default: out.png)
-c copy to clipboard
-l print line
-ext file extension
xclip
(if copy image to clipboard in linux)$ git clone https://github.com/skanehira/code2img
$ cd code2img && go install
skanehira