aboutsummaryrefslogblamecommitdiffstats
path: root/modules/default_shell
blob: 3add959c88336f1a926c16244a6a1e90dda83c87 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                 
#!/bin/bash

# Prints out the name of the default shell

PREFIX='🐚 '

get_default_shell()
{
    echo "$PREFIX$(echo $SHELL |sed 's/.*\///g')"
}

get_default_shell