2 İşlemeler 9c0ee26791 ... e5a9f1fa54

Yazar SHA1 Mesaj Tarih
  blackwine e5a9f1fa54 becoming a party pig 3 hafta önce
  blackwine 9c0ee26791 becoming a party pig 3 hafta önce
1 değiştirilmiş dosya ile 5 ekleme ve 2 silme
  1. 5 2
      bar.go

+ 5 - 2
bar.go

@@ -1,7 +1,10 @@
 package main
 
 import (
+	"os"
+	"os/exec"
 	"fmt"
+	"log"
 	"time"
 
 	// bar
@@ -42,11 +45,11 @@ func (bar *ScreenBar) update() {
 	// Go home and draw (type) a bar
 	fmt.Print("")
 	fmt.Print("")
-	s := fmt.Sprintf(" %%%ds %%6d ", 9-bar.columns)
+	s := fmt.Sprintf(" %%%ds %%6d ", 10-bar.columns)
 	fmt.Printf(s, bar.title, bar.ticks)
 	fmt.Print("")
 
-	// An attempt to display Screenbar using kitty image protocol
+	// An attempt to display Screenbar button using kitty image protocol
 	cmd := exec.Command("sh", "-c", fmt.Sprintf("kitten icat -z -1 -n --place 2x1@%dx0 --stdin no images/bar_button.png < /dev/null > /dev/tty", bar.columns))
 	if out, err := cmd.Output(); err != nil {
 		os.Stdout.Write(out)