From d098e94ad102da9d018acca72ca5a5c554d25a01 Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Mon, 2 Jun 2025 13:11:10 -0700 Subject: Update paths n stuff --- dots/home/scripts/system_name.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 dots/home/scripts/system_name.sh (limited to 'dots/home/scripts/system_name.sh') diff --git a/dots/home/scripts/system_name.sh b/dots/home/scripts/system_name.sh new file mode 100755 index 0000000..2625293 --- /dev/null +++ b/dots/home/scripts/system_name.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +PLATFORM="${PLATFORM:-`platform.sh`}" + +MACHINE="$HOST" +if [ "$PLATFORM" = "osx" ]; then + MACHINE="$(scutil --get ComputerName)" +elif [ "$PLATFORM" = "linux" ]; then + MACHINE="$(cat /proc/sys/kernel/hostname)" +fi + +echo $MACHINE | awk -F\. '{print $1}' \ + | tr '[:upper:]' '[:lower:]' \ + | tr ' ' '-' -- cgit v1.2.3-70-g09d2