Fix dependencies, add tab completion with argcomplete, update README

This commit is contained in:
2025-11-26 12:59:38 +00:00
parent dce1b271ce
commit 4e8171da84
4 changed files with 101 additions and 2 deletions

View File

@@ -36,3 +36,27 @@ Shows how much disk space can be freed.
### Safe by design
Never touches dotfiles, configs, project files, or anything important.
## Installation
### From PyPI
```
pip install filedust
```
### From this repository
```
git clone https://github.com/mdaleo404/filedust.git
cd filedust/
poetry install
```
### TAB completion
Add this to your `.bashrc`
```
eval "$(register-python-argcomplete filedust)"
```
And then
```
source ~/.bashrc
```