2 Комити 9c0ee26791 ... e5a9f1fa54

Аутор SHA1 Порука Датум
  blackwine e5a9f1fa54 becoming a party pig пре 3 недеља
  blackwine 9c0ee26791 becoming a party pig пре 3 недеља
1 измењених фајлова са 5 додато и 2 уклоњено
  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)