aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sh/shrc.d/ls.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/sh/shrc.d/ls.sh b/sh/shrc.d/ls.sh
index c7703663..0fc6923a 100644
--- a/sh/shrc.d/ls.sh
+++ b/sh/shrc.d/ls.sh
@@ -31,10 +31,14 @@ ls() {
[ -e "$HOME"/.cache/ls/time-style ] &&
set -- --time-style='+%Y-%m-%d %H:%M:%S' "$@"
- # Add -G for colorized output if the operating system is FreeBSD
- # We have to check because -G means something else to e.g. GNU ls(1)
+ # If the operating system is FreeBSD, there are some specific options we
+ # can add that might mean different things to e.g. GNU ls(1)
case $OS in
- FreeBSD) set -- -G "$@" ;;
+ FreeBSD)
+ # -D: Timestamp format
+ # -G: Use color
+ set -- -D '%Y-%m-%d %H:%M:%S' -G "$@"
+ ;;
esac
# Run ls(1) with the concluded arguments