dwmbar/modules/hostname
2019-10-25 12:48:08 +01:00

12 lines
121 B
Bash

#!/bin/bash
# Prints USER@hostname
PREFIX=' '
get_hostname()
{
echo "$PREFIX$USER@$(hostname)"
}
get_hostname