void

- enter the void 🪐
git clone git://git.acid.vegas/archlinux.git
Log | Files | Refs | Archive

tlauncher (1699B)

      1 #!/bin/sh
      2 # TMUX Launcher - Developed by acidvegas (https://git.acid.vegas/void)
      3 
      4 start_wildwest() {
      5 	SESSION="WILDWEST"
      6 	tmux new-session -d -s $SESSION -n PI
      7 	tmux new-window -t $SESSION -n POWEREDGE
      8 	tmux split-window -h -t $SESSION:POWEREDGE
      9 	tmux split-window -v -t $SESSION:POWEREDGE.0
     10 	tmux split-window -v -t $SESSION:POWEREDGE.2
     11 	tmux send-keys -t $SESSION:POWEREDGE.0 "dbc r320-1" C-m
     12 	tmux send-keys -t $SESSION:POWEREDGE.1 "dbc r320-2" C-m
     13 	tmux send-keys -t $SESSION:POWEREDGE.2 "dbc r430"   C-m
     14 	tmux send-keys -t $SESSION:POWEREDGE.3 "dbc r620"   C-m
     15 	tmux select-layout -t $SESSION:POWEREDGE tiled
     16 	tmux set-window-option -t $SESSION:POWEREDGE synchronize-panes on
     17 	tmux new-window -t $SESSION -n TUNNEL
     18 	tmux send-keys -t $SESSION:TUNNEL "dbc tunnel" C-m
     19 	tmux attach-session -t $SESSION
     20 }
     21 
     22 start_supernets() {
     23 	SESSION="SUPERNETS"
     24 	tmux new-session -d -s $SESSION -n HUB
     25 	tmux new-window -t $SESSION -n WILDWEST
     26 	tmux new-window -t $SESSION -n NODES
     27 	tmux split-window -h -t $SESSION:NODES
     28 	tmux split-window -v -t $SESSION:NODES.0
     29 	tmux split-window -v -t $SESSION:NODES.2
     30 	tmux send-keys -t $SESSION:NODES.0 "dbc super-lux"     C-m
     31 	tmux send-keys -t $SESSION:NODES.1 "dbc super-miami"   C-m
     32 	tmux send-keys -t $SESSION:NODES.2 "dbc super-zooyork" C-m
     33 	tmux send-keys -t $SESSION:NODES.3 "dbc super-vegas"   C-m
     34 	tmux select-layout -t $SESSION:NODES tiled
     35 	tmux set-window-option -t $SESSION:NODES synchronize-panes on
     36 }
     37 
     38 start_recon() {
     39 	SESSION="RECON"
     40 	tmux new-session -d -s $SESSION -n scan
     41 	tmux new-window -t $SESSION -n box2
     42 	tmux new-window -t $SESSION -n box3
     43 	tmux new-window -t $SESSION -n box4
     44 	tmux new-window -t $SESSION -n box5
     45 	tmux attach-session -t $SESSION
     46 }