mirror of
https://github.com/lowne/fish-prompt-metro.git
synced 2024-10-27 20:34:12 +00:00
9 lines
126 B
Fish
9 lines
126 B
Fish
function pwd_is_home
|
|
switch "$PWD"
|
|
case ~{,/\*}
|
|
return 0
|
|
case \*
|
|
return 1
|
|
end
|
|
end
|