Fix ASCII header alignment
- Simplified main header box by removing right-side borders - Fixed spacing in backup progress header - Ensures consistent display across all terminals 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
15fda585d1
commit
c31306881c
1 changed files with 5 additions and 5 deletions
|
|
@ -1899,7 +1899,7 @@ run_backup_now() {
|
|||
# Show real-time progress
|
||||
echo "╔════════════════════════════════════════════════════════════╗"
|
||||
echo "║ Backup Progress (Live) ║"
|
||||
echo "║ Press Ctrl+C to exit (backup continues in background) ║"
|
||||
echo "║ Press Ctrl+C to exit (backup continues in background) ║"
|
||||
echo "╚════════════════════════════════════════════════════════════╝"
|
||||
echo
|
||||
|
||||
|
|
@ -2120,10 +2120,10 @@ show_version() {
|
|||
# Main script execution
|
||||
main() {
|
||||
echo
|
||||
echo "╔════════════════════════════════════════╗"
|
||||
echo "║ Proxmox Backup Client Installer ║"
|
||||
echo "║ Version: ${SCRIPT_VERSION} ║"
|
||||
echo "╚════════════════════════════════════════╝"
|
||||
echo "╔════════════════════════════════════════"
|
||||
echo "║ Proxmox Backup Client Installer
|
||||
echo "║ Version: ${SCRIPT_VERSION} "
|
||||
echo "╚════════════════════════════════════════"
|
||||
echo
|
||||
|
||||
# Create log file
|
||||
|
|
|
|||
Loading…
Reference in a new issue