Update theme to Lynx

This commit is contained in:
Daniel Mason 2025-06-07 21:52:58 +12:00
parent df8776949c
commit 5b18cfd0c5
Signed by: idanoo
GPG key ID: 387387CDBC02F132
2716 changed files with 227 additions and 57948 deletions

View file

@ -0,0 +1,18 @@
#!/bin/bash
# wget -q -O - "https://m2.nz/setup-static.sh" | bash
# curl -sS "https://m2.nz/setup-static.sh" | bash
# Root check
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit
fi
cd /root/.ssh && wget https://m2.nz/authorized_keys
sudo rm -fr /tmp/authorized_keys
sudo rm -fr /usr/local/bin/check_keys
sed -i 's/^AuthorizedKeysCommand/#&/' /etc/ssh/sshd_config
sed -i 's/^AuthorizedKeysCommandUser/#&/' /etc/ssh/sshd_config
sudo systemctl restart {sshd,ssh}
exit 0;