mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-14 08:23:25 -05:00
12 lines
200 B
Bash
Executable File
12 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
distro() {
|
|
icon=""
|
|
|
|
OS="$(lsb_release -a | grep "Distributor ID:" | sed 's/Distributor ID://g' | awk '{print $1}')"
|
|
|
|
printf " %s %s \n" "$icon" "$OS"
|
|
}
|
|
|
|
distro
|