scripts/lib/term-wrapper-kitty
Alexander Gehrke 7ba3dba2bc Add wrappers for terminals to make scripts terminal-agnostic
Scripts launching a terminal will now require x-terminal-emulator in the
path. A symlink for it can be created using `select-term.zsh`.
2021-07-05 13:11:42 +02:00

10 lines
208 B
Bash
Executable file

#!/bin/zsh
zparseopts -D -E \
t:=title -title=title \
e:=execute -exec=execute -execute=execute \
c:=class -class=class
kitty -1 ${class+--class=}${class[2]} ${title+-T} ${title[2]} ${=execute[2]} "$@"