From 3f3487764cddc04b219445df701e8502663c71aa Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 1 Apr 2016 11:26:59 +1100 Subject: [PATCH] Case wm theme --- neofetch | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 9b745490..60cd0e52 100755 --- a/neofetch +++ b/neofetch @@ -810,7 +810,19 @@ getwm () { # Window Manager Theme {{{ getwmtheme () { - echo "TODO" + case "$os" in + "Linux" | *"BSD") + + ;; + + "Mac OS X") + + ;; + + "Windows") + + ;; + esac } # }}}