labels moved to scripts for dwm compatibility
This commit is contained in:
parent
581924c71c
commit
86a5b350a7
3 changed files with 3 additions and 5 deletions
|
@ -37,11 +37,9 @@ signal=12
|
||||||
|
|
||||||
#[memory]
|
#[memory]
|
||||||
#interval=30
|
#interval=30
|
||||||
#label=🧠
|
|
||||||
|
|
||||||
#[cpu]
|
#[cpu]
|
||||||
#interval=15
|
#interval=15
|
||||||
#label=💻
|
|
||||||
|
|
||||||
[volume]
|
[volume]
|
||||||
interval=once
|
interval=once
|
||||||
|
@ -53,7 +51,7 @@ signal=10
|
||||||
|
|
||||||
#[disk]
|
#[disk]
|
||||||
#interval=60
|
#interval=60
|
||||||
#command=disk /home 🏠
|
#command=disk /home
|
||||||
|
|
||||||
[battery]
|
[battery]
|
||||||
command=battery BAT0
|
command=battery BAT0
|
||||||
|
|
|
@ -7,4 +7,4 @@ case $BLOCK_BUTTON in
|
||||||
- % is of single core." ;;
|
- % is of single core." ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
sensors | awk '/Core 0/ {print $3}'
|
sensors | awk '/Core 0/ {print "🌡", $3}'
|
||||||
|
|
|
@ -6,4 +6,4 @@ case $BLOCK_BUTTON in
|
||||||
- Click to show memory hogs." ;;
|
- Click to show memory hogs." ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
free -h | awk '/^Mem:/ {print $3 "/" $2}'
|
free -h | awk '/^Mem:/ {print "🧠", $3 "/" $2}'
|
||||||
|
|
Loading…
Reference in a new issue