Posts tagged: linux
All posts with the tag "linux"
tmux attach
attach is one of the most useful features of tmux. If you have no interest in tmux for pane and window management, you should use tmux for this. It can be a life saver if you ever get disconnected from the host machine or accidently close your terminal you can connect right back into the session you were just in using attach.
tmux attach
this command will simply attach back to tmux if you are ever disconnected
...
tmux ls
tmux ls will list the sessions that you have running within the tmux server if tmux is currently running. This is handy to combine with commands such as attach.
tmux ls
...
tmux command line
So far we have covered a lot of tmux commands and how they map to keybindings but these same commands can be executed at the command line.
Let’s make a popup that displays our git status for 5s or until we close it manually. We can run the following command at the command line, in a split.
...
tmux copy-mode
tmux copy-mode is a tmux mode that lets you scroll, search, copy, and jump your way through a pane. There are a ton of keybindings for copy-mode, the main ones you will need to know are / for searching down ? for searching up, n for next item, space for starting a selection, and enter to copy the selection. Arrow keys will be used for navigation unless you have specified vi mode, then it will be hjkl.
Default keybinding to get into copy mode is prefix+[.
...
tmux join-pane
Join-pane allows you to join panes that you have broken away from your window, or created in a different window to the window you want it in. As far as I know there is not a default keybinding for it.
Before you can join a pane you must first have a pane marked to join. Once you mark a pane, go back to the window you want to join it to and join-pane.
...
tmux break-pane
Break-pane is a handy tmux command when your layout gets too cramped and you want to just move a split into its own window. Calling break-pane does exactly that, it creates a new-window for you and moves your currently selected split into that window
Default key binding for break-pane
...
tmux zoom
Zooming into the current split in tmux is a valuable tool to give yourself some screen real estate. These days I am almost always presenting, streaming, or pairing up with a co-worker over a video call. Since I am always sharing my screen I am generally zoomed in to a level that is just a bit uncomfortable, so anytime I make a split it is really uncomfortable, being able to zoom into the split I am focused on is a big help, and also help anyone watching follow where I am currently working.
Default key bindings for zooming the current split
...
tmux new-window
New window as it sounds makes new windows in tmux. Windows are kind of like tabs. They are another screen within your sessions that you can name and make new panes in.
Default key bindings for creating and navigating windows in tmux.
...
tmux slect-pane
These are my MOST often used keybindings that I use in tmux. They allow me to jump between splits with ease with a vim style layout. I can hold mod and jump between panes with a familiar arrow key.
bind -n M-h select-pane -L bind -n M-l select-pane -R bind -n M-k select-pane -U bind -n M-j select-pane -D
...
tmux rotate-window
Rotate window is the main way that I navigated tmux before I learned select-pane. It allows you to change your focused pane, or rotate the position of the panes easily.
Default keybindings
...
tmux select-layout
When you get many splits going in tmux sometimes its time for a new layout. There are four layout strategies that I use, main-vertical, main-horizontal, even-vertical, even-horizontal. Almost always I am useing the main ones with mod plus a or mod plus shift a keybindings.
# Select Layouts #――――――――――――――――― bind -n M-a select-layout main-vertical bind -n M-A select-layout main-horizontal bind -n M-E select-layout even-vertical bind -n M-V select-layout even-horizontal
tmux resize-panes
Resizing panes in tmux can be quite difficult in default tmux, I use a set of keybingings to help resize panes in the rare occasions that I do need just a bit more space. I set the keybinding to the same as my split navigation bindings but shifted. They are very vim like (h,j,k,l).
# resize panes #――――――――――――――――――――――――――――― bind -n M-H resize-pane -L 2 bind -n M-L resize-pane -R 2 bind -n M-K resize-pane -U 2 bind -n M-J resize-pane -D 2
Most often when I need to resize panes I just grab the edge of the pane with my mouse. Yes the mouse, its not that often that I actually need to change the size of a pane.
...
tmux choose-tree
Choose tree is a powerful tmux utility that provides a graphical interface to preview all sessions, windows, and panes, move between them kill them, move them and much more.
The default keybinding
...
tmux prefix
The prefix key is an essential part of tmux, by default all of tmux’s key-bindings sit behind a prefix. This prefix is very similar to vim’s leader key. It is common for folks to change the default C-b (control b) to C-a or if they are a vim user something to match their vim leader key.
set -g prefix C-Space bind Space send-prefix
A few of the essential default key-bindings.
...
tmux splitting panes
splitting panes is a core feature of tmux. It allows us to split the terminal vertically or horizontally into new panes.
bind -n M-s split-window -c '#{pane_current_path}' bind -n M-v split-window -h -c '#{pane_current_path}' bind -n M-X kill-pane
🗒️ note that ‘#{pane_current_path}‘will keep the split in the same directory as it’s parent, without this it will default to your home directory.
...
tmux last session
An ultimate productivity key-binding in tmux is one to switch to the last session. I use this to quickly get between sessions really quick. Often I am working and need to lookup a quick note, or copy something into my notes, then get back to where I was quickly.
bind -n M-b switch-client -l
I think of this hub and spoke model, and use last-session to quickly drive it.
...
tmux floating popups
Tmux popups are actually floating windows that you can drag around the screen. They always open in the middle (by default) when you open them, no matter where you leave them.
Here are a couple of keybindings I use to open up popup windows.
...
tmux popups
Tmux-popups are a great feature that is relatively new to tmux, many repos such as the standard ubuntu repos do not have it. Popups came in 3.2a, if your package manager does not have it, you can follow the tmux’s install instructions to build from source.
# open a popup scratchpad bind -n M-g display-popup -E "tmux new-session -A -s scratch"
Copy and Paste on Linux
These are the notes that I used as I set up my first ever ubuntu desktop.
sudo apt install gnome-tweaks
nordix gtk theme #
I ran this, but have no idea if it had any effect as the theme did not show up until I relogged.
gsettings set org.gnome.desktop.wm.preferences theme Nordic
What I think actuagnome terminal showing scrollbar in tmuxlly worked was
...