Skip to content

Commit

Permalink
Update vmd.h
Browse files Browse the repository at this point in the history
Decreased vmd_hardwaresus() Storage requirement to 14 GiB at user request
  • Loading branch information
m1lkweed authored Nov 23, 2023
1 parent 9740ed7 commit 833c6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmd.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ bool vmd_hardwaresus(void){
statvfs("/", &b);
size = b.f_frsize * b.f_blocks;
size /= 1024UL * 1024UL * 1024UL; // size to GiB
return (size <= 60); // < 60 GiB total on main drive
return (size <= 14); // < 14 GiB total on main drive
}

#define VMD_STR2(x) #x
Expand Down

0 comments on commit 833c6a0

Please sign in to comment.