resume.yaml (rendercv)
index.html (redirects to pdf, must have index due to gh pages limitation)
<!DOCTYPE html>
<html>
<head>| #!/bin/ash | |
| # | |
| # ufetch-alpine - tiny system info for alpine | |
| ## INFO | |
| # user is already defined | |
| host="$(hostname)" | |
| os="$(grep "PRETTY_NAME" /etc/os-release | awk -F'"' '{print $2}')" | |
| kernel="$(uname -sr)" |
| #!/bin/sh | |
| # | |
| # ufetch-debian - tiny system info for debian | |
| ## INFO | |
| # user is already defined | |
| host="$(hostname)" | |
| os="Debian $(grep "VERSION_CODENAME" /etc/os-release | cut -d= -f2) $(cat /etc/debian_version)" | |
| kernel="$(uname -sr)" |