1
0
forked from extern/nix-config

Use tmux for all termite windows

Since tmux is such a useful program, and since we don't need to worry
about images in termite, it makes sense to start all termite windows
with tmux. This lets us use any and all termite sessions in urxvt as
needed.
This commit is contained in:
Donovan Glover 2018-10-17 01:53:40 -04:00
parent d4740a92c1
commit 3a524479a3
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 5 additions and 2 deletions

View File

@ -9,9 +9,9 @@ super + Return
super + shift + Return
urxvtcd -e "tmux"
# Open a new transparent terminal
# Open a new transparent terminal with tmux without the status bar
super + backslash
termite --config ~/.cache/wal/termite
termite --config ~/.cache/wal/termite -e "tmux new-session; set status"
# Open a new transparent terminal with tmux
super + shift + backslash

View File

@ -49,6 +49,9 @@ bind-key s split-window -v
bind -n S-Left previous-window
bind -n S-Right next-window
# Show and hide the status bar with shift + up
bind -n S-Up set status
# Easily move the current window to the left/right
bind-key -n C-Left swap-window -t -1
bind-key -n C-Right swap-window -t +1