Hiatus No More

Well, it's been far too long since I've made a post here, and after receiving some, ahem, encouragement from a great friend and colleague, I figured it's high time I put fingers to keyboard and get back to flinging more bits into cyberspace. So, here goes...

tmux Goodness

This afternoon I happened to get tired of continually opening a terminal screen, firing up tmux, and proceeding to manually set up three separate panels of similar height arranged vertically on the screen. I figured that there had to be a way to do all that with a one-liner straight from the command line, and after some Googling and experimenting, I managed to get it figured out.

tmux new-session \; split-window -p 66 \; split-window -p 50 \; select-pane -t 1

Typed that in and bam! I had three almost-equal panes in the terminal window, with the cursor sitting there in the first pane waiting for the next command.

Tags: