Updated config
This commit is contained in:
parent
ea23c1fbce
commit
a6b6c608aa
@ -54,7 +54,6 @@ alias paur "pacman -Qm"
|
|||||||
alias porphan "pacman -Qtdq"
|
alias porphan "pacman -Qtdq"
|
||||||
|
|
||||||
# Tmux
|
# Tmux
|
||||||
alias t "tmux"
|
|
||||||
alias ta "tmux attach"
|
alias ta "tmux attach"
|
||||||
alias td "tmux detach"
|
alias td "tmux detach"
|
||||||
alias tl "tmux ls"
|
alias tl "tmux ls"
|
||||||
|
15
.config/fish/functions/t.fish
Normal file
15
.config/fish/functions/t.fish
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
function t
|
||||||
|
if not tmux has-session -t main 2>/dev/null
|
||||||
|
init_session
|
||||||
|
end
|
||||||
|
|
||||||
|
tmux attach-session -t main
|
||||||
|
end
|
||||||
|
|
||||||
|
function init_session
|
||||||
|
tmux new-session -d -s main -d -x (tput cols) -y (tput lines)
|
||||||
|
tmux split-window -v -l 10 journalctl -f
|
||||||
|
tmux select-pane -t 0
|
||||||
|
tmux split-window -h -l 50 btop
|
||||||
|
tmux select-pane -t 0
|
||||||
|
end
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
|
*.log
|
||||||
!.gitignore
|
!.gitignore
|
||||||
!/.config
|
!/.config
|
||||||
/.config/*
|
/.config/*
|
||||||
|
Loading…
Reference in New Issue
Block a user