32 lines
982 B
Bash
32 lines
982 B
Bash
|
#!/bin/sh
|
||
|
gnome-screensaver &
|
||
|
|
||
|
xsetroot -solid black
|
||
|
|
||
|
#while loop to update statusbar with some goodies
|
||
|
while true; do
|
||
|
#memfreak to get it in MB
|
||
|
memfreak2=$(grep MemFree /proc/meminfo | awk '{ print $2 }')
|
||
|
memfreak=$(($memfreak2 / 1024))
|
||
|
#time
|
||
|
CLK=$(date +'%a %b %d %R:%S %Z')
|
||
|
#volume
|
||
|
VOL=$(amixer get Master | tail -1 | awk '{ print $5 }' | tr -d '[]')
|
||
|
#loadavg
|
||
|
AVG=$(cat /proc/loadavg | cut -d ' ' -f -3)
|
||
|
#network stats in Bytes
|
||
|
NW=$(dstat -n --nocolor 1 1 | tail -1 | awk '{ print $1, $2}')
|
||
|
battper=$(cat /sys/class/power_supply/BAT0/capacity)
|
||
|
#this one is not so good, increases a delay of 1-2s of the updating.
|
||
|
#put it in the xsetrootname plz (tip of the day, do not put | as first char after "
|
||
|
xsetroot -name "$AVG | $memfreak MB | Bat: $battper% | Vol: $VOL | $CLK | "
|
||
|
sleep 1
|
||
|
done &
|
||
|
|
||
|
|
||
|
nm-applet &
|
||
|
mate-volume-control-status-icon &
|
||
|
feh -z -Z --bg-scale /home/didier/Pictures/background.png
|
||
|
|
||
|
exec dwm >/dev/null
|