diff --git a/setup.sh b/setup.sh
index 504fefc..5392da8 100644
--- a/setup.sh
+++ b/setup.sh
@@ -4,16 +4,18 @@ cp Settings/.zshrc Settings/.vimrc Settings/.zprofile Settings/.gitconfig .
 
 if [ $(id -u) -ne 0 ]
 then
-	echo "run me as root to copy cdbm to the system"
+	echo "run me as root to copy cdbm & lsd to the system"
 else
 	if [ ! -d /usr/local/bin ]; then mkdir -p /usr/local/bin; fi
 	OS=`uname`
 	case "$OS" in
 		Darwin)
 			cp Settings/cdbm/Darwin/cdbm /usr/local/bin
+			cp Settings/lsd/Darwin/lsd /usr/local/bin
 		;;
 		Linux)
 			cp Settings/cdbm/Linux/cdbm /usr/local/bin
+			cp Settings/lsd/Linux/lsd /usr/local/bin
 		;;
 		*)
 			$OS is not supported