power menu, redshift, polybar
This commit is contained in:
13
.config/polybar/scripts/system-cpu-loadavg/README.md
Normal file
13
.config/polybar/scripts/system-cpu-loadavg/README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# Script: system-cpu-loadavg
|
||||
|
||||
A shell script which displays the cpu loadavg. It is a simple script. Very simple.
|
||||
|
||||
|
||||
## Module
|
||||
|
||||
```ini
|
||||
[module/system-cpu-loadavg]
|
||||
type = custom/script
|
||||
exec = ~/polybar-scripts/system-cpu-loadavg.sh
|
||||
interval = 5
|
||||
```
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
awk '{print $1" "$2" "$3}' < /proc/loadavg
|
||||
Reference in New Issue
Block a user