upgradede to 1.4-release

This commit is contained in:
2025-08-18 22:51:04 -06:00
parent a93f0b7f46
commit 2e34f4c3ae
3 changed files with 14 additions and 1 deletions
+2
View File
@@ -7,6 +7,8 @@ some features require user to have passwordless sudo rights
Literally the most schizophrenically overengineered thing I have ever made. idk why I did that Literally the most schizophrenically overengineered thing I have ever made. idk why I did that
Total install size (discounting needed packages) is about 9GiB
## Quick start ## Quick start
1. `mkdir ~/esp` 1. `mkdir ~/esp`
2. `git clone --recursive https://github.com/PrincessPi3/esp-idf-tools.git ~/esp/esp-idf-tools` 2. `git clone --recursive https://github.com/PrincessPi3/esp-idf-tools.git ~/esp/esp-idf-tools`
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
espidf=$(du -b -d 0 ~/esp/esp-idf | awk '{print $1}')
espdevkits=$(du -b -d 0 ~/esp/esp-dev-kits | awk '{print $1}')
espidftools=$(du -b -d 0 ~/esp/esp-idf-tools | awk '{print $1}')
custom_bin=$(du -b -d 0 ~/esp/.custom_bin | awk '{print $1}')
espressif=$(du -b -d 0 ~/.espressif | awk '{print $1}')
bytes=$(($espidf + $espdevkits + $espidftools + $custom_bin + $espressif))
human=$(numfmt --to=iec-i --suffix=B $bytes)
echo "Total size of ESP-IDF related directories: $bytes bytes ($human)"
+1 -1
View File
@@ -1 +1 @@
1.3-dev-0 1.4-release