added stuff
This commit is contained in:
parent
0b94854432
commit
95b737c5fa
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
YYYYMM="$(date -u +%Y%m)"
|
||||
TS="$(date -u +%F-%T%z)"
|
||||
RECDIR="$HOME/Documents/sync/recsessions"
|
||||
|
||||
if [[ ! -d "$RECDIR" ]]; then
|
||||
echo "recdir $RECDIR not found." > /dev/stderr
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -d "$RECDIR/$YYYYMM" ]]; then
|
||||
mkdir -p "$RECDIR/$YYYYMM"
|
||||
fi
|
||||
|
||||
OUTPUT="$RECDIR/$YYYYMM/session.$TS.json"
|
||||
|
||||
exec asciinema rec -w 5 "$OUTPUT"
|
|
@ -0,0 +1,30 @@
|
|||
#!/bin/bash
|
||||
|
||||
PKGS="
|
||||
bash-completion
|
||||
build-essential
|
||||
byobu
|
||||
command-not-found
|
||||
cryptsetup-bin
|
||||
daemontools
|
||||
golang-go
|
||||
iptables-persistent
|
||||
iptraf-ng
|
||||
jq
|
||||
less
|
||||
lsof
|
||||
mosh
|
||||
ntp
|
||||
pbzip2
|
||||
pv
|
||||
runit
|
||||
runit-systemd
|
||||
socat
|
||||
vim
|
||||
wget
|
||||
"
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
sudo apt update
|
||||
sudo apt install -y $PKGS
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
KEY_URL="https://sneak.cloud/authorized_keys"
|
||||
|
||||
curl -fLo /root/.ssh/authorized_keys --create-dirs $KEY_URL
|
||||
curl -fLo /home/pi/.ssh/authorized_keys --create-dirs $KEY_URL
|
Loading…
Reference in New Issue