mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
12 lines
121 B
Bash
Executable file
12 lines
121 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Prints USER@hostname
|
|
|
|
PREFIX=' '
|
|
|
|
get_hostname()
|
|
{
|
|
echo "$PREFIX$USER@$(hostname)"
|
|
}
|
|
|
|
get_hostname
|