feat(config): split tmux config, add helpers

This commit is contained in:
2025-01-14 05:50:19 +02:00
parent bb8ddf0bba
commit 2a76a414a0
8 changed files with 203 additions and 144 deletions

28
config/tmux/rename-session.sh Executable file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env bash
# Default session name
DEFAULT_NAME="main"
# Current session
CURRENT_SESSION=$(tmux display-message -p "#{session_name}")
# Check that the session has a name
if [ "$CURRENT_SESSION" = "#{session_name}" ] || [ "$CURRENT_SESSION" = "0" ]; then
# Check if the default name is already in use
if tmux has-session -t "$DEFAULT_NAME" 2> /dev/null; then
# Query the user for a new name
echo "Session name '$DEFAULT_NAME' is already in use. Enter a new name:"
read -r NEW_NAME
while tmux has-session -t "$NEW_NAME" 2> /dev/null || [ -z "$NEW_NAME" ]; do
echo "Name '$NEW_NAME' is invalid or already in use. Enter a new name:"
read -r NEW_NAME
done
# Rename the session with the new name
tmux rename-session -t "$(tmux display-message -p "#{session_id}")" "$NEW_NAME"
exit 0
else
# Rename the session with the default name
tmux rename-session -t "$(tmux display-message -p "#{session_id}")" "$DEFAULT_NAME"
exit 0
fi
fi