summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2024-01-27 12:45:54 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2024-01-27 12:45:54 +0530
commit05f9bc5afd5ac5f671f1dcd3d20774b0987545ec (patch)
treeaa1a9fbe816b5217f6827ae2a41481f762c6c7f4 /.local
parentcc5a352e65e533cc84358a546c9ee6f1d5a47908 (diff)
refactor dotfiles, and use nix
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/tmux-sessionizer15
1 files changed, 0 insertions, 15 deletions
diff --git a/.local/bin/tmux-sessionizer b/.local/bin/tmux-sessionizer
deleted file mode 100755
index 8f1c263..0000000
--- a/.local/bin/tmux-sessionizer
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-DIR=$(fdfind --type d --strip-cwd-prefix -L -H | fzf)
-SESSION_NAME="$DIR_$(date +%M%S)"
-
-if [ -n "$DIR" ]
-then
- tmux new-session -d -c "$DIR" -s "$SESSION_NAME"
- if [ -n "$TMUX" ]
- then
- tmux switch -t "$SESSION_NAME"
- else
- tmux attach -t "$SESSION_NAME"
- fi
-fi