shell script based session management

This commit is contained in:
2025-10-11 16:32:39 +02:00
parent 9dcdc2a6e6
commit 9146724e6c
4 changed files with 56 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
SESSION_FILE=$(ls "$HOME/tmux" | fzf)
if [ -n "$SESSION_FILE" ]; then
sh "$HOME/tmux/$SESSION_FILE"
fi