commit 2241161bb346b43d99c217e76e60f92635cb2dad parent d9b033d0fb15604e385740baeaa83a54d760782c Author: hhvn <dev@hhvn.uk> Date: Sun, 2 Jan 2022 18:56:04 +0000 .s/ttyblocks: remove Diffstat:
D | .scripts/ttyblocks | | | 16 | ---------------- |
1 file changed, 0 insertions(+), 16 deletions(-)
diff --git a/.scripts/ttyblocks b/.scripts/ttyblocks @@ -1,16 +0,0 @@ -#!/bin/sh - -cd /tmp/dwmblocks -while sleep 1 -do - tput sc - tput cup 0 0 - tput sgr0 - output=$(cat bat net torrent cpu mem disk disk2 vol time time2 2>/dev/null | tr '\n' ' ' | tr -s ' ' | sed 's/\^[^^]*\^//g') - for void in $(seq $(($(tput cols)-$(echo "$output" | wc -c)))) - do - printf " " - done - echo "$output" - tput rc -done &