1
0
forked from extern/nix-config
donovanglover-nix-config/.config/fish/functions/neofetch.fish
Donovan Glover 4e65100b5e
Update fish config
Setting XDG_CURRENT_DESKTOP and QT_FONT_DPI lets us run KDE applications
in bspwm with near-identical settings without starting plasmashell.
2018-10-03 15:34:11 -04:00

23 lines
533 B
Fish

function neofetch
echo -ne '\n'
/usr/bin/neofetch \
--disable cpu model gpu kernel \
--shell_version off \
--os_arch off \
--gtk_shorthand on \
--gtk2 off \
--gtk3 off \
--package_managers off \
--uptime_shorthand tiny \
--block_range 1 7 \
--bar_char '~' '-' \
--bar_border off \
--bar_colors 6 7 \
--bar_length 11 \
--memory_display bar \
--loop \
--size 48% \
--w3m \
$argv
end