@@ -42,6 +42,7 @@ import (
42
42
"github.com/nightlyone/lockfile"
43
43
"golang.org/x/sync/errgroup"
44
44
"github.com/schollz/progressbar/v3"
45
+ "github.com/k0kubun/go-ansi"
45
46
46
47
"github.com/someone1/zfsbackup-go/backends"
47
48
"github.com/someone1/zfsbackup-go/config"
@@ -504,18 +505,26 @@ func sendStream(ctx context.Context, j *files.JobInfo, c chan<- *files.VolumeInf
504
505
505
506
// Initialize progress bar
506
507
bar := progressbar .NewOptions64 (int64 (totalSize ),
507
- progressbar .OptionSetDescription ("Backing up..." ),
508
- progressbar .OptionSetWriter (os .Stderr ),
509
- progressbar .OptionShowBytes (true ),
510
- progressbar .OptionSetWidth (50 ),
511
- progressbar .OptionThrottle (65 * time .Millisecond ),
512
- progressbar .OptionShowCount (),
513
- progressbar .OptionOnCompletion (func () {
514
- fmt .Fprint (os .Stderr , "\n " )
515
- }),
516
- progressbar .OptionSpinnerType (14 ),
517
- progressbar .OptionFullWidth (),
518
- )
508
+ progressbar .OptionSetWriter (ansi .NewAnsiStdout ()),
509
+ progressbar .OptionEnableColorCodes (true ),
510
+ progressbar .OptionShowBytes (true ),
511
+ progressbar .OptionSetWidth (50 ),
512
+ progressbar .OptionThrottle (65 * time .Millisecond ),
513
+ progressbar .OptionShowCount (),
514
+ progressbar .OptionSetDescription ("[cyan]Backing up...[reset]" ),
515
+ progressbar .OptionOnCompletion (func () {
516
+ fmt .Fprint (ansi .NewAnsiStdout (), "\n " )
517
+ }),
518
+ progressbar .OptionSpinnerType (14 ),
519
+ progressbar .OptionFullWidth (),
520
+ progressbar .OptionSetTheme (progressbar.Theme {
521
+ Saucer : "[green]=[reset]" ,
522
+ SaucerHead : "[green]>[reset]" ,
523
+ SaucerPadding : " " ,
524
+ BarStart : "[" ,
525
+ BarEnd : "]" ,
526
+ }),
527
+ )
519
528
520
529
// Initialize chunk tracking variables
521
530
totalChunks := int (totalSize / (j .VolumeSize * humanize .MiByte ))
0 commit comments