(fish) pretty fish title and command not found function

This commit is contained in:
qvalentin 2022-01-21 18:03:19 +01:00
parent 6033c6f4a8
commit 9815b80ece
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,4 @@
function fish_command_not_found
echo Did not find command $argv[1]
pkgfile -s $argv[1]
end

View File

@ -0,0 +1,7 @@
function fish_title
if [ $_ = 'fish' ]
echo " " (prompt_pwd)
else
echo $_
end
end