mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
I tried Nix, but it had too many downsides so I removed it. 1. Didn't like that all files are immutable and simple config changes need a complete rebuild. 2. Setting up a new Mac didn't work as smoothly as promised. Not worth the effort. 3. It sucked a lot to always have to type in the password twice on each darwin-rebuild 4. It solves problems I never had.
19 lines
473 B
Bash
Executable File
19 lines
473 B
Bash
Executable File
# Determine size of a file or total size of a directory
|
|
|
|
fs() {
|
|
# Check if 'du' supports the -b option
|
|
if du -b /dev/null > /dev/null 2>&1; then
|
|
arg="-sbh"
|
|
else
|
|
arg="-sh"
|
|
fi
|
|
|
|
# If arguments are provided, use them; otherwise, use current directory
|
|
if [ $# -gt 0 ]; then
|
|
du $arg -- "$@"
|
|
else
|
|
# Use find to handle hidden files and directories
|
|
find . -maxdepth 1 -print0 | xargs -0 du $arg | sort -h
|
|
fi
|
|
}
|