dotfiles/fish/functions/nice_hostname.fish

7 lines
112 B
Fish

# nice_hostname
#
# Take the first part of the hostname.
function nice_hostname
hostname | cut -d . -f 1
end