* Added HFS+ to udevil's allowed types. * Added mediainfo to meet photorec-sort requirements * Removed git * Switched out Chromium for Midori * Size reduction test * hw-diags now tests USB drives (except ARCH drives) * mount-all-volumes no longer opens the file browser Bugfix: mount-backup-shares should now work.
10 lines
128 B
Bash
10 lines
128 B
Bash
#!/bin/bash
|
|
#
|
|
## WK HW diagnostics - Progress
|
|
|
|
# Loop forever
|
|
while :; do
|
|
clear
|
|
echo -e "$(cat "$1")"
|
|
sleep 1s
|
|
done
|