dwmbar/modules/username

14 lines
160 B
Text
Raw Permalink Normal View History

2021-12-14 17:39:47 +00:00
#!/bin/bash
# Prints the effective username of the current user
PREFIX=''
get_username()
{
USERNAME=$(whoami)
echo "$PREFIX $USERNAME"
}
get_username