Skip to content

Instantly share code, notes, and snippets.

View NewbiZ's full-sized avatar
😎

Aurélien Vallée NewbiZ

😎
View GitHub Profile
[alias]
ci = commit
co = checkout
st = status
br = branch
ls = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
[branch]
autosetuprebase = always
[push]
default = matching
#!/bin/bash
tmux new-session -d -s work
# First window: vim
tmux new-window -t 1 -k -n vim
tmux send-keys -t 1 'cd /home/avallee/workspace/pdk-software-master/ticker-plant' Enter
tmux send-keys -t 1 'clear' Enter
# Second window: make
@NewbiZ
NewbiZ / flash.sh
Created September 9, 2025 05:16
Flash corne
#!/bin/bash
REPO_ARG=(-R newbiz/zmk-config-corne-wireless)
OUT_DIR="/tmp/corne-wireless-firmware"
rm -rf "$OUT_DIR"
mkdir -p "$OUT_DIR"
command -v gh >/dev/null 2>&1 || { echo "gh not found"; exit 1; }
gh auth status >/dev/null 2>&1 || { echo "gh not authenticated"; exit 1; }