mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2025-02-05 21:10:01 +00:00
13 lines
120 B
Text
13 lines
120 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
# Prints out the kernel version
|
||
|
|
||
|
PREFIX=' '
|
||
|
|
||
|
get_kernel()
|
||
|
{
|
||
|
echo "$PREFIX$(uname -r)"
|
||
|
}
|
||
|
|
||
|
get_kernel
|