Skip to content

Instantly share code, notes, and snippets.

View barnumbirr's full-sized avatar

Martin Simon barnumbirr

View GitHub Profile
@barnumbirr
barnumbirr / Ttg67.json
Created January 29, 2022 16:13
Table-Gadget 67 (TG67) Keyboard - VIA definition
{
"name": "TG67",
"vendorId": "0x4D54",
"productId": "0x0101",
"lighting": "qmk_rgblight",
"matrix": { "rows": 5, "cols": 15 },
"layouts": {
"keymap":
[
[
@barnumbirr
barnumbirr / newscript.sh
Created January 22, 2024 07:37 — forked from aaronNGi/newscript.sh
Boilerplate for new POSIX shell scripts
#!/bin/sh
prog_name=${0##*/}
version=1.0
version_text="Boilerplate for new scripts v$version"
options="h o: q v V"
help_text="Usage: $prog_name [-o <text>] [-hqvV] [<file>]...
Boilerplate for new scripts