Files
linux-bin/wm_spawn

10 lines
223 B
Plaintext
Raw Normal View History

2023-05-15 10:49:24 -04:00
#!/bin/bash
if [ -n "$TMUX" ] ; then
# tmux session running
# tmux split-window -h "nvim \"$*\""
tmux split-window -h $EDITOR $1
else
# alacritty -e "nvim \"$*\""
alacritty -e bash -ic "$EDITOR $1" &
fi