1
0
forked from extern/nix-config
donovanglover-nix-config/dots/common/.config/fish/functions/neofetch.fish
Donovan Glover a24326f12c
Remove neofetch config in favor of fish function
It doesn't make sense to manage an entire neofetch config file since the
majority of the settings required to produce a decent output can be
achieved by just passing options at runtime.
2018-09-07 02:22:54 -04:00

14 lines
335 B
Fish

function neofetch
echo -ne '\n'
/usr/bin/neofetch \
--disable \
model gpu wm_theme theme icons \
line_break cols kernel \
--ascii_distro linux \
--package_managers off \
--os_arch off \
--speed_shorthand on \
--cpu_brand off \
--cpu_cores off
end