improve shell detection
1 files changed, 2 insertions(+), 1 deletions(-) M shatgpt
M shatgpt => shatgpt +2 -1
@@ 18,7 18,8 @@ editor() { shell() { # get the user's editor - printf '%s' "${SHELL:-sh}" + shell=$(basename "$SHELL") + printf '%s' "${shell:-sh}" } os() {