TheRepoClub-DotFiles/flexiflow_bar/.local/bin/flexiflow_bar/bar_shell
The-Repo-Club b3a4e39a53
Update
2023-08-16 05:22:14 +01:00

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