This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:6B5C9FD8DA16B67F]
| [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 |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:6B5C9FD8DA16B67F]
| #!/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; } |