mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-25 00:38:20 -05:00
12 lines
142 B
Bash
Executable File
12 lines
142 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
kernel() {
|
|
icon=""
|
|
|
|
kernel=$(uname -r | awk '{print $1}')
|
|
|
|
printf " %s %s \n" "$icon" "$kernel"
|
|
}
|
|
|
|
kernel
|