#!/usr/bin/env sh if [ -n "$TMUX" ] ; then # tmux session running tmux split-window -h "$EDITOR \"$*\"" else # Remove option --tab for new window ( alacritty -e xdg-open $* & ) fi