#Iris Build Log
A few more parts arrived but I'm still waiting on the case.
Today I got back from Hawaii and a few other parts arrived:
| ,----+----+----+----+----+----. ,----+----+----+----+----+----. | |
| ESC , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 0 ,BSPC, | |
| |----+----+----+----+----+----| |----+----+----+----+----+----| | |
| TAB , Q , W , E , R , T , Y , U , I , O , P ,DEL , | |
| |----+----+----+----+----+----| |----+----+----+----+----+----| | |
| CTRL, A , S , D , F , G , H , J , K , L ,SCLN,QUOT, | |
| |----+----+----+----+----+----+----. ,----|----+----+----+----+----+----| | |
| LSFT, Z , X , C , V , B ,SPC , ENT , N , M ,COMM,DOT ,SLSH,RGHT, | |
| `----+----+----+--+-+----+----+----/ \----+----+----+----+----+----+----' | |
| ??? , FN ,SPC , ENT ,LGUI,LALT |
sudo update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/local/bin/st 60
Setting ST as default terminal on Ubuntu:
Setting up MPD & NCMPCPP:
Setting up DWM:
| [ | |
| [ | |
| { | |
| "c": "#cfaf00", | |
| "a": 7 | |
| }, | |
| "Tab", | |
| "Q", | |
| "W", | |
| "E", |
$ mkdir secrets
$ cd secrets
$ echo "This is my secret text file" > secret.txt
$ ls
secret.txt
$ echo -n "Enter passphrase: " && read -s passphrase && echo
Enter passphrase:
$ echo "$passphrase" | gpg --batch --yes --passphrase-fd 0 \
> --symmetric secret.txt
| #!/usr/bin/env bash | |
| find ./src -type f -iname '*.c' -exec clang-format -style=file -i {} \; | |
| find ./include -type f -iname '*.h' -exec clang-format -style=file -i {} \; | |