Moved TDAB to its own repository

master
Steven Saus 4 years ago
parent 7abde465e8
commit 365a246b3c
  1. 29
      tmux_devour.sh
  2. 29
      tmux_sidebar.sh
  3. BIN
      tmux_sidebars.gif
  4. BIN
      tmux_sidebars.mkv
  5. 28
      tmux_topbar.sh

@ -1,29 +0,0 @@
#!/bin/bash
##############################################################################
#
# tmux-devour
# (c) Steven Saus 2020
# Licensed under the MIT license
#
##############################################################################
c_tmux=$(env | grep -c TMUX)
if [ $c_tmux -gt 0 ];then
command=$(echo "$@")
o_pane=$(tmux list-panes -F "#D")
tmux split-window -h
#"$command"
c_pane=$(tmux list-panes -F "#D" | grep -v "$o_pane")
printf '\033]2;%s\033\\' 'devour'
tmux resize-pane -t "$c_pane" -R 20
tmux select-pane -m -t "$c_pane"
command2=$(echo "eval \"${command}\" ; tmux kill-pane -t ${c_pane}")
tmux resize-pane -Z -t "$c_pane"
tmux send-keys -t "$c_pane" "$command2" C-m
else
eval "$@"
fi

@ -1,29 +0,0 @@
#!/bin/bash
##############################################################################
#
# tmux-sidebar
# (c) Steven Saus 2020
# Licensed under the MIT license
#
##############################################################################
c_tmux=$(env | grep -c TMUX)
if [ $c_tmux -gt 0 ];then
command=$(echo "$@")
o_pane=$(tmux list-panes -F "#D")
tmux split-window -h
c_pane=$(tmux list-panes -F "#D" | grep -v "$o_pane")
# Uncomment for left hand sidebar
#tmux swap-pane -s "$o_pane" -t "$c_pane"
printf '\033]2;%s\033\\' 'topbar'
tmux resize-pane -t "$c_pane" -R 30
command2=$(echo "eval \"${command}\" ; tmux kill-pane -t ${c_pane}")
tmux send-keys -t "$c_pane" "$command2" C-m
tmux last-pane
else
eval "$@"
fi

Binary file not shown.

Before

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

@ -1,28 +0,0 @@
#!/bin/bash
##############################################################################
#
# tmux-topbar
# (c) Steven Saus 2020
# Licensed under the MIT license
#
##############################################################################
c_tmux=$(env | grep -c TMUX)
if [ $c_tmux -gt 0 ];then
command=$(echo "$@")
o_pane=$(tmux list-panes -F "#D")
tmux split-window -v
#"$command"
c_pane=$(tmux list-panes -F "#D"| grep -v "$o_pane")
tmux swap-pane -s "$o_pane" -t "$c_pane"
printf '\033]2;%s\033\\' 'topbar'
tmux resize-pane -t "$c_pane" -U 14
#tmux select-pane -m -t "$c_pane"
command2=$(echo "eval \"${command}\" ; tmux kill-pane -t ${c_pane}")
tmux send-keys -t "$c_pane" "$command2" C-m
tmux last-pane
else
eval "$@"
fi
Loading…
Cancel
Save