mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
12 lines
120 B
Bash
Executable file
12 lines
120 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Prints out the kernel version
|
|
|
|
PREFIX=' '
|
|
|
|
get_kernel()
|
|
{
|
|
echo "$PREFIX$(uname -r)"
|
|
}
|
|
|
|
get_kernel
|