1
0
Fork 0

fish: permissions

This commit is contained in:
Von Random 2025-01-02 19:09:29 +02:00
parent 1ec56b52e5
commit 2be735284e
31 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
function termcompat
set -l term $TERM
switch $term
case 'alacritty*' 'kitty*' 'wezterm' 'xterm-*'
set term xterm
case 'rxvt-unicode-*'
set term rxvt-unicode
case 'tmux*'
set term screen.xterm-new
end
begin
set -lx TERM $term
command $argv
end
end