This will open a tmux session for each monitor. Add helper script for tmux actions.
13 lines
252 B
Bash
Executable File
13 lines
252 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Simple fallback terminal launcher
|
|
# Uses alacritty directly without complex session detection
|
|
|
|
ALACRITTY="/home/jens/.cargo/bin/alacritty"
|
|
|
|
if [ -x "$ALACRITTY" ]; then
|
|
exec "$ALACRITTY"
|
|
else
|
|
# Fallback to xterm
|
|
exec xterm
|
|
fi |