Skip to content

Instantly share code, notes, and snippets.

View tot0rokr's full-sized avatar
🐳
On Happy!

TOT0Ro tot0rokr

🐳
On Happy!
View GitHub Profile
@tot0rokr
tot0rokr / tmux command basic.md
Created October 9, 2018 18:31 — forked from LeoHeo/tmux command basic.md
기본적인 tmux 사용법

Tmux Command

mac 기준으로 Tmux 설치부터 기본적인 명령어를 알아가고자 한다.
Tutorial용으로 참고할만한 블로그는 아래와같다.
Tmux-Part1 Tmux-Part2

Install

@tot0rokr
tot0rokr / .tmux.conf
Last active December 22, 2022 06:58 — forked from junho85/.tmux.conf
tmux.conf for v2.6
# set -g mouse on
# mouse scroll
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
# 256 color
set -g default-terminal "screen-256color"
setw -g mode-keys vi
@tot0rokr
tot0rokr / repo-apply.sh
Last active April 4, 2023 05:10 — forked from gipi/repo-apply.sh
Split a patch created with repo diff in a set of usable patches
#!/bin/sh
## Script to patch up diff reated by `repo diff`
# from https://groups.google.com/d/msg/repo-discuss/43juvD1qGIQ/7maptZVcEjsJ
if [ -z "$1" ] || [ ! -e "$1" ]; then
echo "Usages: $0 <repo_diff_file>";
exit 0;
fi
rm -fr _tmp_splits*