mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-17 18:03:23 -05:00
12 lines
207 B
Bash
Executable File
12 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
kernel() {
|
|
icon=" "
|
|
|
|
kernel=$(uname -r | awk '{print $1}')
|
|
|
|
printf "%s%s\n" "%{F#1e222a}%{B#EC6798}$icon %{F-}%{B-}" "%{F#1e222a}%{B#C4C7C5} $kernel %{F-}%{B-}"
|
|
}
|
|
|
|
kernel
|