2022-11-26 23:40:39 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
status_bar=0
|
|
|
|
|
2022-11-27 16:42:47 +01:00
|
|
|
#while [ ${status_bar} -eq 0 ] ; do
|
2022-11-26 23:40:39 +01:00
|
|
|
updates=$(~/.config/dwl/scripts/checkUpdates.sh)
|
|
|
|
kernel=$(~/.config/dwl/scripts/kernel_version.sh)
|
|
|
|
cpuinfo=$(~/.config/dwl/scripts/cpu_info.sh)
|
|
|
|
meminfo=$(~/.config/dwl/scripts/mem_info.sh)
|
|
|
|
volume=$(~/.config/dwl/scripts/get_volume.sh)
|
|
|
|
date=$(~/.config/dwl/scripts/current_date.sh)
|
|
|
|
echo "${updates} ${kernel} ${cpuinfo} ${meminfo} ${volume} ${date}"
|
2022-11-27 16:42:47 +01:00
|
|
|
# sleep 2
|
|
|
|
#done
|