├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── bacon.toml ├── cli ├── Cargo.toml └── src │ ├── args.rs │ ├── col.rs │ ├── col_expr.rs │ ├── cols.rs │ ├── csv.rs │ ├── filter.rs │ ├── help.rs │ ├── json.rs │ ├── lib.rs │ ├── list_cols.rs │ ├── normal.rs │ ├── order.rs │ ├── sorting.rs │ ├── table.rs │ └── units.rs ├── deploy.sh ├── doc ├── labels.png ├── lfs-dot.png ├── lfs-inodes.png └── screenshot.png ├── fmt.sh ├── release.sh ├── rustfmt.toml ├── src └── main.rs ├── target.sh ├── version.sh └── website ├── .gitignore ├── README.md ├── ddoc.hjson ├── deploy.sh └── src ├── community.md ├── css └── site.css ├── filters.md ├── img ├── c=+dev+inodes.png ├── c=-fs+type.png ├── c=all.png ├── c=default.png ├── c=fs+use+disk.png ├── c=label+.png ├── c=label+default+dev.png ├── c=label+use+size+disk+mount.png ├── csv.png ├── dysk-homard-logo.svg ├── dysk-homard-pattes-logo.svg ├── dysk-json-jq.png ├── dysk.png ├── dysk_c=+dev+inodes.png ├── dysk_c=-fs+type.png ├── dysk_c=all.png ├── dysk_c=default.png ├── dysk_c=label+.png ├── dysk_c=label+default+dev.png ├── dysk_c=label+use+size+disk+mount.png ├── dysk_filters.png ├── dysk_rows-all.png ├── dysk_rows-current.png ├── dysk_rows-standard.png ├── dysk_s=dev.png ├── dysk_s=free-d.png ├── dystroy-rust-white.svg ├── favicon.ico ├── favicon.png ├── filters.png ├── github-mark-white.svg ├── github-mark.svg ├── json-jq-tour.png ├── json-jq.png ├── logo-lfs-100.png ├── logo-lfs.png ├── lvm.png ├── rows-all.png ├── rows-current.png ├── rows-standard.png ├── s=dev.png ├── s=free-d.png └── standard.png ├── index.md ├── install.md ├── json.md └── table.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Canop] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/README.md -------------------------------------------------------------------------------- /bacon.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/bacon.toml -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/args.rs -------------------------------------------------------------------------------- /cli/src/col.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/col.rs -------------------------------------------------------------------------------- /cli/src/col_expr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/col_expr.rs -------------------------------------------------------------------------------- /cli/src/cols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/cols.rs -------------------------------------------------------------------------------- /cli/src/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/csv.rs -------------------------------------------------------------------------------- /cli/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/filter.rs -------------------------------------------------------------------------------- /cli/src/help.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/help.rs -------------------------------------------------------------------------------- /cli/src/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/json.rs -------------------------------------------------------------------------------- /cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/lib.rs -------------------------------------------------------------------------------- /cli/src/list_cols.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/list_cols.rs -------------------------------------------------------------------------------- /cli/src/normal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/normal.rs -------------------------------------------------------------------------------- /cli/src/order.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/order.rs -------------------------------------------------------------------------------- /cli/src/sorting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/sorting.rs -------------------------------------------------------------------------------- /cli/src/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/table.rs -------------------------------------------------------------------------------- /cli/src/units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/cli/src/units.rs -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/deploy.sh -------------------------------------------------------------------------------- /doc/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/doc/labels.png -------------------------------------------------------------------------------- /doc/lfs-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/doc/lfs-dot.png -------------------------------------------------------------------------------- /doc/lfs-inodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/doc/lfs-inodes.png -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /fmt.sh: -------------------------------------------------------------------------------- 1 | cargo +nightly fmt 2 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/release.sh -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/src/main.rs -------------------------------------------------------------------------------- /target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/target.sh -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/version.sh -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | site 2 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/README.md -------------------------------------------------------------------------------- /website/ddoc.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/ddoc.hjson -------------------------------------------------------------------------------- /website/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/deploy.sh -------------------------------------------------------------------------------- /website/src/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/community.md -------------------------------------------------------------------------------- /website/src/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/css/site.css -------------------------------------------------------------------------------- /website/src/filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/filters.md -------------------------------------------------------------------------------- /website/src/img/c=+dev+inodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=+dev+inodes.png -------------------------------------------------------------------------------- /website/src/img/c=-fs+type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=-fs+type.png -------------------------------------------------------------------------------- /website/src/img/c=all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=all.png -------------------------------------------------------------------------------- /website/src/img/c=default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=default.png -------------------------------------------------------------------------------- /website/src/img/c=fs+use+disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=fs+use+disk.png -------------------------------------------------------------------------------- /website/src/img/c=label+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=label+.png -------------------------------------------------------------------------------- /website/src/img/c=label+default+dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=label+default+dev.png -------------------------------------------------------------------------------- /website/src/img/c=label+use+size+disk+mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/c=label+use+size+disk+mount.png -------------------------------------------------------------------------------- /website/src/img/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/csv.png -------------------------------------------------------------------------------- /website/src/img/dysk-homard-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk-homard-logo.svg -------------------------------------------------------------------------------- /website/src/img/dysk-homard-pattes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk-homard-pattes-logo.svg -------------------------------------------------------------------------------- /website/src/img/dysk-json-jq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk-json-jq.png -------------------------------------------------------------------------------- /website/src/img/dysk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=+dev+inodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=+dev+inodes.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=-fs+type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=-fs+type.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=all.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=default.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=label+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=label+.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=label+default+dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=label+default+dev.png -------------------------------------------------------------------------------- /website/src/img/dysk_c=label+use+size+disk+mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_c=label+use+size+disk+mount.png -------------------------------------------------------------------------------- /website/src/img/dysk_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_filters.png -------------------------------------------------------------------------------- /website/src/img/dysk_rows-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_rows-all.png -------------------------------------------------------------------------------- /website/src/img/dysk_rows-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_rows-current.png -------------------------------------------------------------------------------- /website/src/img/dysk_rows-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_rows-standard.png -------------------------------------------------------------------------------- /website/src/img/dysk_s=dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_s=dev.png -------------------------------------------------------------------------------- /website/src/img/dysk_s=free-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dysk_s=free-d.png -------------------------------------------------------------------------------- /website/src/img/dystroy-rust-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/dystroy-rust-white.svg -------------------------------------------------------------------------------- /website/src/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/favicon.ico -------------------------------------------------------------------------------- /website/src/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/favicon.png -------------------------------------------------------------------------------- /website/src/img/filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/filters.png -------------------------------------------------------------------------------- /website/src/img/github-mark-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/github-mark-white.svg -------------------------------------------------------------------------------- /website/src/img/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/github-mark.svg -------------------------------------------------------------------------------- /website/src/img/json-jq-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/json-jq-tour.png -------------------------------------------------------------------------------- /website/src/img/json-jq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/json-jq.png -------------------------------------------------------------------------------- /website/src/img/logo-lfs-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/logo-lfs-100.png -------------------------------------------------------------------------------- /website/src/img/logo-lfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/logo-lfs.png -------------------------------------------------------------------------------- /website/src/img/lvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/lvm.png -------------------------------------------------------------------------------- /website/src/img/rows-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/rows-all.png -------------------------------------------------------------------------------- /website/src/img/rows-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/rows-current.png -------------------------------------------------------------------------------- /website/src/img/rows-standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/rows-standard.png -------------------------------------------------------------------------------- /website/src/img/s=dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/s=dev.png -------------------------------------------------------------------------------- /website/src/img/s=free-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/s=free-d.png -------------------------------------------------------------------------------- /website/src/img/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/img/standard.png -------------------------------------------------------------------------------- /website/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/index.md -------------------------------------------------------------------------------- /website/src/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/install.md -------------------------------------------------------------------------------- /website/src/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/json.md -------------------------------------------------------------------------------- /website/src/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Canop/dysk/HEAD/website/src/table.md --------------------------------------------------------------------------------