dwmbar/modules/username
2021-12-14 17:39:47 +00:00

14 lines
No EOL
160 B
Bash
Executable file

#!/bin/bash
# Prints the effective username of the current user
PREFIX=''
get_username()
{
USERNAME=$(whoami)
echo "$PREFIX $USERNAME"
}
get_username