diff options
author | Joe <rrbo@proton.me> | 2023-06-14 12:30:07 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-06-14 12:30:07 +0200 |
commit | f964c2cb48308d98b83ae92448a201e9f8a30cea (patch) | |
tree | e8eb77260fdcaaaa03200c4e865b81d285f2ac66 /.local/bin/status/sb-os | |
parent | up (diff) | |
download | dotfiles-bsd-f964c2cb48308d98b83ae92448a201e9f8a30cea.tar.gz dotfiles-bsd-f964c2cb48308d98b83ae92448a201e9f8a30cea.tar.bz2 dotfiles-bsd-f964c2cb48308d98b83ae92448a201e9f8a30cea.tar.xz dotfiles-bsd-f964c2cb48308d98b83ae92448a201e9f8a30cea.tar.zst dotfiles-bsd-f964c2cb48308d98b83ae92448a201e9f8a30cea.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/status/sb-os | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.local/bin/status/sb-os b/.local/bin/status/sb-os index 820ce47..5f0973e 100755 --- a/.local/bin/status/sb-os +++ b/.local/bin/status/sb-os @@ -1,11 +1,9 @@ #!/bin/sh -os=$(uname) - -case $os in - "FreeBSD") os="" ;; - "Linux") os="" ;; - *) return ;; +case $(hostname -s) in + mother) os="" ;; + po-rbo) os="" ;; + mars) os="" ;; esac echo "$os " |