aboutsummaryrefslogtreecommitdiff
path: root/herbstluftwm/bar/functions/sysinfo
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-12-25 20:58:03 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-12-25 20:58:03 +0530
commitb7487a098cc140448a633e763d1e7dd2fd087653 (patch)
treea5721c56fdf06a83775bfdf671733d2df87fe06f /herbstluftwm/bar/functions/sysinfo
parent93657d7a40972e39ea8d059efad608a39b372985 (diff)
moved lemonbar to different folder
Diffstat (limited to 'herbstluftwm/bar/functions/sysinfo')
-rwxr-xr-xherbstluftwm/bar/functions/sysinfo48
1 files changed, 0 insertions, 48 deletions
diff --git a/herbstluftwm/bar/functions/sysinfo b/herbstluftwm/bar/functions/sysinfo
deleted file mode 100755
index a377c600..00000000
--- a/herbstluftwm/bar/functions/sysinfo
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/zsh
-
-date_time() {
- datetime=$(date +"%d %b(%A) %H:%M")
- echo $datetime
-}
-
-cpu_load() {
- read cpu a b c previdle rest < /proc/stat
- prevtotal=$((a+b+c+previdle))
- sleep 0.5
- read cpu a b c idle rest < /proc/stat
- total=$((a+b+c+idle))
- cpu=$((100*( (total-prevtotal) - (idle-previdle) ) / (total-prevtotal) ))
- echo -e "CPU: $cpu%"
-}
-
-cpu_temp() {
- CEL=$'\xc2\xb0C'
- temp=$( cat /sys/devices/virtual/thermal/thermal_zone0/temp )
- temp=`expr $temp / 1000`
- echo "TEMP: " $temp$CEL
-}
-
-root_usage() {
- root=$(df -h / | awk 'NR==2 {print $4 "/" $2}')
- echo "ROOT: "$root
-}
-
-home_usage() {
- home=$(df -h /home | awk 'NR==2 {print $4 "/" $2}')
- echo "HOME: "$home
-}
-
-mem_usage() {
- mem=$(free -m | grep Mem: | awk '{print$3 / $2 * 100}')
- printf "MEM: %.0f %%" $mem
-}
-
-while :; do
- echo $(date_time) > /home/zt/.cache/lemon/clock
- echo $(cpu_load) > /home/zt/.cache/lemon/cpu_load
- echo $(cpu_temp) > /home/zt/.cache/lemon/cpu_temp
- echo $(root_usage) > /home/zt/.cache/lemon/disk_root
- echo $(home_usage) > /home/zt/.cache/lemon/disk_home
- echo $(mem_usage) > /home/zt/.cache/lemon/mem
- sleep 3
-done