#!/bin/sh

# Detect installed operating system release

if [ -r /etc/os-release ] ; then
  . /etc/os-release

  echo "${PRETTY_NAME}"
fi

