mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-02-05 13:00:03 +00:00
14 lines
160 B
Text
14 lines
160 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints the effective username of the current user
|
||
|
|
||
|
PREFIX=''
|
||
|
|
||
|
get_username()
|
||
|
{
|
||
|
USERNAME=$(whoami)
|
||
|
|
||
|
echo "$PREFIX $USERNAME"
|
||
|
}
|
||
|
|
||
|
get_username
|