dwmbar/modules/hostname

13 lines
121 B
Text
Raw Permalink Normal View History

2019-10-25 11:48:08 +00:00
#!/bin/bash
# Prints USER@hostname
PREFIX=' '
get_hostname()
{
echo "$PREFIX$USER@$(hostname)"
}
get_hostname