From 7c51eb93466ba706d876d1a05b6c6d4b17d6dd7f Mon Sep 17 00:00:00 2001 From: stringhandler Date: Fri, 27 Mar 2026 11:56:30 +0200 Subject: [PATCH] feat: add smplx alias --- simplexup/simplexup | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/simplexup/simplexup b/simplexup/simplexup index 369701d..9b45ce0 100755 --- a/simplexup/simplexup +++ b/simplexup/simplexup @@ -3,7 +3,7 @@ set -eo pipefail # NOTE: if you make modifications to this script, please increment the version number. # WARNING: the SemVer pattern: major.minor.patch must be followed as we use it to determine if the script is up to date. -SIMPLEXUP_INSTALLER_VERSION="0.0.2" +SIMPLEXUP_INSTALLER_VERSION="0.0.3" BASE_DIR=${XDG_CONFIG_HOME:-$HOME} SIMPLEX_DIR=${SIMPLEX_DIR:-"$BASE_DIR/.simplex"} @@ -354,8 +354,10 @@ use() { cp "$SIMPLEX_VERSION_DIR/$bin" "$bin_path" # Print usage msg case $bin in - simplex) + simplex) say "- $(ensure "$bin_path" -V)" + # Create smplx alias pointing to the simplex binary + ln -sf "$bin_path" "$SIMPLEX_BIN_DIR/smplx" ;; esac