summaryrefslogtreecommitdiff
path: root/.local/bin/tmux-r
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/tmux-r')
-rwxr-xr-x.local/bin/tmux-r17
1 files changed, 0 insertions, 17 deletions
diff --git a/.local/bin/tmux-r b/.local/bin/tmux-r
deleted file mode 100755
index 6b4819c..0000000
--- a/.local/bin/tmux-r
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-session="R"
-
-# Check if the session exists, discarding output
-# We can check $? for the exit status (zero for success, non-zero for failure)
-tmux has-session -t $session 2>/dev/null
-
-if [ $? != 0 ]; then
- # Set up your session
- tmux new-session -d -s "$session" R -q --no-save
- # R -q --no-save
- # ([ -e /usr/bin/R ] && R -q --no-save) || python -q
-fi
-
-# Attach to created session
-tmux attach-session -t $session