Files
dot-config-folder/i3/simple-terminal.sh
Jens Luedicke 8e563fec51 Add session manager for tmux.
This will open a tmux session for each monitor.
Add helper script for tmux actions.
2025-09-22 15:26:42 +02:00

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