mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-12 15:19:44 +00:00
e5b929d981
Prints your distro's name
14 lines
175 B
Bash
14 lines
175 B
Bash
#!/bin/bash
|
|
|
|
# Prints out your OS name
|
|
|
|
PREFIX=' '
|
|
|
|
get_os_name()
|
|
{
|
|
OS=$(cat /etc/os-release | head -n 1 | sed 's/NAME=//g')
|
|
|
|
echo "$PREFIX$OS"
|
|
}
|
|
|
|
get_os_name
|