# 256phi - Discord Bot Fun interactions and Proxmox monitoring. ## Commands - `/pet`, `/boop`, `/hug`, `/cookie`, `/headpat` - fun stuff - `/node` - full node health (CPU, memory, swap, storage, VMs/containers) - `/vms` - list all VMs and containers - `/notify` - send a DM (owner only) ## Run ```bash pip install -r requirements.txt python3 bot.py ``` ## Systemd Service ```ini [Unit] Description=256phi Discord Bot After=network.target [Service] Type=simple User=mystra WorkingDirectory=/home/mystra ExecStart=/usr/bin/python3 bot.py Restart=on-failure [Install] WantedBy=multi-user.target ``` ```bash sudo systemctl enable 256phi sudo systemctl start 256phi ```