mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-18 09:57:17 +01:00
Big refactor based on #4324 introducing a new drive layout - adding optimizations for Proxmox and old laptop drive layout . Also making it possible to boot from NVMe. Replacing blitz.datadrive.sh with blitz.data.sh - icluding the possibility to migrate an old ssd/nvme to a bigger one (copying complete data and blockchain). Lots of smaller changes.
11 lines
247 B
Bash
Executable File
11 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
# script for custom tmux status bar
|
|
|
|
if [ -f "/mnt/hdd/app-data/raspiblitz.conf" ]; then
|
|
source /mnt/hdd/app-data/raspiblitz.conf 2>/dev/null
|
|
echo "${hostname}"
|
|
else
|
|
#echo "$configFile does not exist"
|
|
echo "unknown"
|
|
fi
|