add block du
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Simon Vieille 2022-08-29 10:38:47 +02:00
parent c30f1958d6
commit 1a631d94ff
Signed by: deblan
GPG Key ID: 579388D585F70417
1 changed files with 70 additions and 0 deletions

70
blocks/du/main.go Normal file
View File

@ -0,0 +1,70 @@
package main
import (
"fmt"
r "gitnet.fr/deblan/i3-blocks-go/rendering"
"os"
"os/exec"
"strconv"
"strings"
"sync"
)
func DiskUsage(path string) int {
outb, _ := exec.Command("df", "-h", path).Output()
output := string(outb)
lines := strings.Split(output, "\n")
columns := strings.Fields(lines[1])
value, _ := strconv.Atoi(strings.ReplaceAll(columns[4], "%", ""))
return value
}
func runFileExplorer(wg *sync.WaitGroup, path string) {
defer wg.Done()
command := exec.Command("xdg-open", path)
command.Run()
}
func main() {
argBlockName := os.Args[1]
argName := os.Args[2]
argPoint := os.Args[3]
argLimitWarning, _ := strconv.Atoi(os.Args[4])
argLimitDanger, _ := strconv.Atoi(os.Args[5])
used := DiskUsage(argPoint)
fbUsed := r.FB{Background: r.Color("black1")}
var wg sync.WaitGroup
if os.Getenv("BLOCK_BUTTON") == "1" {
wg.Add(1)
go runFileExplorer(&wg, fmt.Sprintf("file://%s", argPoint))
}
if used < argLimitWarning {
fbUsed.Foreground = r.Color("green")
} else if used < argLimitDanger {
fbUsed.Foreground = r.Color("orange")
} else {
fbUsed.Foreground = r.Color("red")
}
label := r.TextWithPadding(
argName,
r.FB{
Foreground: r.Color("grey1"),
Background: r.Color("black2"),
},
)
value := r.TextWithPadding(fmt.Sprintf("%d%%", used), fbUsed)
options := r.NewBlockOptions()
options.FullText = fmt.Sprintf("%s%s", label, value)
block := r.Block(argBlockName, options)
fmt.Println(block)
wg.Wait()
}