From 3a524479a3c1c2183d49cde7c4b3e24cc2c91343 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 17 Oct 2018 01:53:40 -0400 Subject: [PATCH] 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. --- .config/sxhkd/sxhkdrc | 4 ++-- .tmux.conf | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc index e80942e..245ab12 100644 --- a/.config/sxhkd/sxhkdrc +++ b/.config/sxhkd/sxhkdrc @@ -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 diff --git a/.tmux.conf b/.tmux.conf index 117f975..191943c 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -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