forked from extern/nix-config
a24326f12c
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.
14 lines
335 B
Fish
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
|