Update tcsh a bit

This commit is contained in:
2025-04-24 03:21:42 -03:00
parent 6e1219e0b5
commit d452db49a5

View File

@ -1,5 +1,9 @@
# If running interactively, then:
if ($?prompt) then
set SHELL = "/usr/bin/bash"
exec $SHELL
endif
# If not running interactively, don't do anything
if (! $?prompt) return
# Set starship if it's installed
if (! `which starship >& /dev/null`) eval `starship init tcsh`
# Just use bash
set SHELL = "/bin/bash"
exec $SHELL