Add dotfiles

This commit is contained in:
Gluk0zka 2024-06-02 14:02:06 +03:00
parent 49bfe1a4d3
commit b6e01a720b
52 changed files with 4701 additions and 0 deletions

32
dwmbar/modules/cpuload Executable file
View file

@ -0,0 +1,32 @@
#!/bin/bash
# Prints out the CPU load percentage
PREFIX=' '
get_load()
{
# Get the first line with aggregate of all CPUs
cpu_last=($(head -n1 /proc/stat))
cpu_last_sum="${cpu_last[@]:1}"
cpu_last_sum=$((${cpu_last_sum// /+}))
sleep 0.05
cpu_now=($(head -n1 /proc/stat))
cpu_sum="${cpu_now[@]:1}"
cpu_sum=$((${cpu_sum// /+}))
cpu_delta=$((cpu_sum - cpu_last_sum))
cpu_idle=$((cpu_now[4]- cpu_last[4]))
cpu_used=$((cpu_delta - cpu_idle))
cpu_usage=$((100 * cpu_used / cpu_delta))
# Keep this as last for our next read
cpu_last=("${cpu_now[@]}")
cpu_last_sum=$cpu_sum
echo "$PREFIX $cpu_usage%"
}
get_load