Skip to content

Instantly share code, notes, and snippets.

View azcoigreach's full-sized avatar
👽

azcoigreach

👽
View GitHub Profile

Keybase proof

I hereby claim:

  • I am azcoigreach on github.
  • I am azcoigreach (https://keybase.io/azcoigreach) on keybase.
  • I have a public key ASCNjEFpVW7u1W7e3fvoT4vaZKV-fQ8oGZi_xRv7Z2mh2Qo

To claim this, I am signing this object:

@azcoigreach
azcoigreach / .tmux.conf
Created January 4, 2019 06:08
holocron tmux conf
# Install tmux plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sidebar'
set -g @plugin 'tmux-plugins/tmux-net-speed'
set -g @plugin 'tmux-plugins/tmux-online-status'
set -g @plugin 'tmux-plugins/tmux-cpu'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
@azcoigreach
azcoigreach / tasker_keybase_sign.sh
Last active August 27, 2019 20:03
Receive message from Tasker. Sign with Keybase PGP. Return signature.
#!/usr/bin/expect -f
#am broadcast --user 0 -a net.dinglish.tasker.[task name] -e [variable name] "[value]" > /dev/null
#Send passphrase as argument to keybase for PGP SIGN from pgp_input.txt to pgp_output.txt
#Uses Tasker, Termux and Keybase
set timeout -1
set PGP_PASS [lindex $argv 0];
spawn keybase --standalone pgp sign -c -o pgp_output.txt -i /data/data/com.termux/files/home/storage/shared/pgp_input.txt
expect {
"re:" {
@azcoigreach
azcoigreach / Keybase-Pi0.md
Last active September 18, 2021 21:21
Installing Keybase on Raspberry/Banana Pi Zero

Installing Keybase

For Raspberry Pi Zero W & Banana Pi Zero M2

Operating System

  • KALI Linux - Re4son kernel (RPi)
  • Armbian - Bullseye (BPi)
$ uname -rv
4.14.80-Re4son+ #1 Thu Feb 6 15:03:43 CET 2020 # KALI
@azcoigreach
azcoigreach / Keybase PGP
Created September 19, 2021 00:43
Keybase PGP Key Import
```keybase pgp export --query <RSA ID> | gpg --import
keybase pgp export -s | gpg --allow-secret-key-import --import```
```gpg -k```
```gpg --edit-key <RSA ID>
gpg> trust
Please decide how far you trust this user to correctly verify other users' keys
@azcoigreach
azcoigreach / btop-install.sh
Last active October 8, 2022 18:24
Install btop++
#!/bin/bash
# install btop++ on x86_64-linux
# https://github.com/aristocratos/btop
# download btop
wget -qO btop.tbz https://github.com/aristocratos/btop/releases/latest/download/btop-x86_64-linux-musl.tbz
# extract btop
sudo tar xf btop.tbz -C /usr/local/bin bin/btop