dotfiles/i3/terminal.sh

24 lines
670 B
Bash
Raw Normal View History

2018-04-03 13:55:41 +00:00
#!/bin/bash
2018-04-30 15:19:00 +00:00
# If a window with a path in its title is focused, open a terminal with that
# location as working directory. Like this, terminals are opened in the same
# directory as the currently focused one. I modified my oh-my-zsh to always
# also print the directory, even when a command is executing.
2018-04-03 13:55:41 +00:00
if [[ $(xtitle) =~ (in|^.*@.*:)\ (~?)(/.*) ]]; then
2018-04-03 13:55:41 +00:00
path="${BASH_REMATCH[3]}"
[[ ${BASH_REMATCH[2]} == "~" ]] && path="$HOME$path"
while [[ $path != / && -n $path && ! -d $path ]]; do
path="$(dirname "$path")"
done
fi
# Open terminal at specified path
cmd=i3-sensible-terminal
if [[ -n $path ]]; then
2018-08-19 14:48:28 +00:00
exec env -C "$path" $cmd "$@"
2018-04-03 13:55:41 +00:00
else
exec $cmd "$@"
2018-04-03 13:55:41 +00:00
fi