tmux common tasks

new file:   scripts/itermtmux
		resume tmux with iterm integration
	new file:   scripts/localtmux
		resume tmux on local console
	new file:   scripts/newtmux
		start new tmux for itermtmux and localtmux
This commit is contained in:
Maciej Krok 2016-12-18 10:59:23 +01:00
parent d41dff7917
commit 683476941d
3 changed files with 9 additions and 0 deletions

3
scripts/itermtmux Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
tmux -CC a -t $(hostname -s)

3
scripts/localtmux Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
tmux a -t $(hostname -s)

3
scripts/newtmux Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
tmux new -s $(hostname -s)