Add session manager for tmux.

This will open a tmux session for each monitor.
Add helper script for tmux actions.
This commit is contained in:
2025-09-22 15:26:42 +02:00
parent c4df56cb47
commit 8e563fec51
8 changed files with 622 additions and 11 deletions

13
i3/simple-terminal.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/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