mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-03-13 08:59:22 +00:00
13 lines
165 B
Text
13 lines
165 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out the name of the default shell
|
||
|
|
||
|
PREFIX=' '
|
||
|
|
||
|
get_default_shell()
|
||
|
{
|
||
|
echo "$PREFIX$(echo $SHELL |sed 's/.*\///g')"
|
||
|
}
|
||
|
|
||
|
get_default_shell
|