Add conkys and wallpapers

This commit is contained in:
kuben
2019-11-03 15:04:22 +01:00
parent a58cdb6355
commit 86764734fd
57 changed files with 1669 additions and 0 deletions

10
.conky/scripts/disk.sh Executable file
View File

@@ -0,0 +1,10 @@
cat /proc/mounts | awk '{ if ( $1 ~ /\/dev/ )
{
num_elem = split($2,str_array,"/")
if (str_array[num_elem] == "")
{
str_array[num_elem] = "/";
}
printf "%5.5s: ${fs_free %s} / ${fs_size %s}\n${fs_bar 6 %s}\n", str_array[num_elem], $2, $2, $2
}
}'