fish/alias.fish

9 lines
151 B
Fish
Raw Normal View History

2023-07-19 20:09:47 +01:00
function cclear
2023-07-19 20:51:47 +01:00
if test -e '/nix'
2023-07-19 20:09:47 +01:00
/run/current-system/sw/bin/clear
else
/bin/clear
end
end
2023-07-09 18:26:37 +01:00
alias clear "cclear && hyfetch"