From c667fca5050d860d34008479bd02a4fb8ac30064 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 30 Oct 2016 17:40:43 +1100 Subject: [PATCH] Kernel: Hardcode kernel_shorthand=tiny on BSD systems --- neofetch | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/neofetch b/neofetch index dbcd0eb9..9f035776 100755 --- a/neofetch +++ b/neofetch @@ -266,6 +266,11 @@ gettitle() { # Kernel {{{ getkernel() { + # Hardcode kernel_shorthand=tiny on BSD systems. + case "$os" in + "BSD") kernel_shorthand="tiny" ;; + esac + case "$kernel_shorthand" in "on") kernel_flags="-sr" ;; "tiny") kernel_flags="-r" ;;