diff --git a/zsh.d/zshfunctions/status b/zsh.d/zshfunctions/status index 4dd0f4e..0c780bf 100644 --- a/zsh.d/zshfunctions/status +++ b/zsh.d/zshfunctions/status @@ -5,7 +5,7 @@ echo if [ $KERNEL = "Darwin" ]; then cpu_type=$(sysctl -n machdep.cpu.brand_string) elif [ $KERNEL = "Linux" ]; then - cpu_type=$(cat /proc/cpuinfo|grep "model name:"|cut -d: -f2|uniq) + cpu_type=$(cat /proc/cpuinfo|grep "model name"|cut -d: -f2|uniq) fi print -P "$FX[bold]Kernel:$FX[reset] $KERNEL" diff --git a/zsh.d/zshfunctions/status.zwc b/zsh.d/zshfunctions/status.zwc index 4f4cfc0..0d2d4b1 100644 Binary files a/zsh.d/zshfunctions/status.zwc and b/zsh.d/zshfunctions/status.zwc differ