nix-dotfiles/scripts/detachedtext.sh

10 lines
197 B
Bash
Raw Normal View History

#!/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