From 1957081c122fe231eb6120192489dd979d214317 Mon Sep 17 00:00:00 2001 From: mediocregopher Date: Sun, 13 Aug 2023 21:34:14 +0200 Subject: Update branch with all changes which could be brought in from private branches For a while I was keeping a private branch where there were a lot of non-public things included, and that became the de-facto branch while this one lagged. This one is now up-to-date, all private stuff is dealt with via config files which are not committed. --- awesome/bin/cricket | Bin 2744274 -> 0 bytes awesome/bin/scrot-gobin.sh | 4 ---- awesome/bin/scrot.sh | 7 +++++++ awesome/bin/sysstats.sh | 50 --------------------------------------------- 4 files changed, 7 insertions(+), 54 deletions(-) delete mode 100755 awesome/bin/cricket delete mode 100755 awesome/bin/scrot-gobin.sh create mode 100755 awesome/bin/scrot.sh delete mode 100755 awesome/bin/sysstats.sh (limited to 'awesome/bin') diff --git a/awesome/bin/cricket b/awesome/bin/cricket deleted file mode 100755 index b8d5699..0000000 Binary files a/awesome/bin/cricket and /dev/null differ diff --git a/awesome/bin/scrot-gobin.sh b/awesome/bin/scrot-gobin.sh deleted file mode 100755 index 33bfc9f..0000000 --- a/awesome/bin/scrot-gobin.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -scrot -o -s "/tmp/shot.png" -eog /tmp/shot.png diff --git a/awesome/bin/scrot.sh b/awesome/bin/scrot.sh new file mode 100755 index 0000000..8a39ac9 --- /dev/null +++ b/awesome/bin/scrot.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +set -e +mkdir -p ~/Screenshots +f="$HOME/Screenshots/shot-$(date +%s).png" +scrot -o -s "$f" +feh "$f" diff --git a/awesome/bin/sysstats.sh b/awesome/bin/sysstats.sh deleted file mode 100755 index f42588e..0000000 --- a/awesome/bin/sysstats.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash - -cd $(dirname "$0") - -sep=" | " - -out=$(/home/mediocregopher/.config/awesome/bin/cricket \ - --limit 1 \ - --ping-hosts 8.8.8.8 \ - --net-interval "" \ - --disk-interval "" \ - --disk-io-interval "") - -function outNum { - echo "$out" | grep "$1" | grep -oP "$2=\"[0-9]+\"" | grep -oP '[0-9]+' -} - -echo -n "ping:$(outNum "ping result" "tookMSAvg")ms" - -echo -n "$sep" - -memBarSize=10 -memPer=$(outNum "mem stats" "memUsedPer") -memUsed=$(expr $memPer / $memBarSize) -memUnused=$(expr $memBarSize - $memUsed) -echo -n "mem:" -for i in $(seq $memUsed); do echo -n "█"; done -for i in $(seq $memUnused); do echo -n "░"; done -for i in $(seq $(expr $memBarSize - $memUsed - $memUnused)); do echo -n "░"; done - -echo -n "$sep" - -cpuBarSize=20 -cpuIdle=$(outNum "cpu stats" "cpuIdle") -cpuSys=$(outNum "cpu stats" "cpuSystem") -cpuUser=$(outNum "cpu stats" "cpuUser") -cpuTot=$(expr $cpuIdle + $cpuSys + $cpuUser) -function cpuL { - python -c "print(int($1 / $cpuTot * $cpuBarSize))" -} -cpuLIdle=$(cpuL $cpuIdle) -cpuLSys=$(cpuL $cpuSys) -cpuLUser=$(cpuL $cpuUser) -echo -n "cpu:" -for i in $(seq $cpuLUser); do echo -n "█"; done -for i in $(seq $cpuLSys); do echo -n "▓"; done -for i in $(seq $cpuLIdle); do echo -n "░"; done -for i in $(seq $(expr $cpuBarSize - $cpuLIdle - $cpuLSys - $cpuLUser)); do echo -n "░"; done - -echo "" -- cgit v1.2.3