mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 06:54:45 +03:00
6 lines
213 B
Plaintext
6 lines
213 B
Plaintext
|
#!/bin/sh
|
||
|
# This script is a helper that starts a new terminal window
|
||
|
# in the cwd of the calling process, rather than using the
|
||
|
# default cwd which is usually the home directory.
|
||
|
wezterm start --cwd $PWD -- "$@"
|