Created
March 21, 2020 15:37
-
-
Save curi0usJack/3461b05984f56f41e21f25a38cf785f0 to your computer and use it in GitHub Desktop.
Revisions
-
curi0usJack created this gist
Mar 21, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ alias tmconf='vim ~/.tmux.conf' alias tmls='tmux ls' alias tmsess='tmux attach -t' alias tmcolors='for i in {0..255}; do printf "\x1b[38;5;${i}mcolor%-5i\x1b[0m" $i ; if ! (( ($i + 1 ) % 8 )); then echo ; fi ; done' alias tmnew='tmux new -s' alias tmload='tmux source-file ~/.tmux.conf' alias tmlayout='tmux list-windows | sed -n "s/.*layout \(.*\)] @.*/\1/p"' alias mux='tmuxinator'