dwmbar/modules/default_shell
2021-10-21 14:03:27 +01:00

12 lines
165 B
Bash

#!/bin/bash
# Prints out the name of the default shell
PREFIX=' '
get_default_shell()
{
echo "$PREFIX$(echo $SHELL |sed 's/.*\///g')"
}
get_default_shell