mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-11 23:14:22 -05:00
16 lines
186 B
Bash
Executable File
16 lines
186 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
shell() {
|
|
icon=""
|
|
|
|
if [[ -n "$SHELL" ]]; then
|
|
shell="$SHELL"
|
|
else
|
|
shell="Can not detech shell"
|
|
fi
|
|
|
|
printf " %s %s \n" "$icon" "$shell"
|
|
}
|
|
|
|
shell
|