Esto es una receta rápida para configurar y empezar a usar ian, una pequeña aplicación que simplifica algunos de los problemas habituales con los que se enfrenta cualquier mantenedor de paquetes Debian.
This is a new try to start using tmux. I am absolutly convenced about advantages of tmux, but for some strange reason, I am not able to learn its key combos…
I hope this recipe should be a way to have the very basic functions always at a glance.
Panes
horizontal split
C-b %
vertical split
C-b "
move cursor
C-b {arrow}
close
C-b x
maximize/minimize
C-b z
Windows
create
C-b c
change
C-b {n}
Sessions
detach
C-b d
attach
tmux a
list
tmux ls
kill
tmux kill-session -t {n}
Config file
In your ~/.tmux.conf
set -g mouse on
setw -g monitor-activity on
set -g visual-activity on
Siempre me ha gustado escribir aplicaciones extensibles, pero picarme todo un sistema de plugins me ha parecido tedioso.
Por eso he intentado buscar librerías que me ayuden a crear plugins, aunque siempre he tenido problemas para la distribución de éstos, como me ha pasado con Yapsy.
La verdad es que me he sentido como un auténtico estúpido al descubrir que Python tiene un sistema para escribir plugins muy sencillo de usar. Vamos a ver cómo.
Puedes encontrar el artículo original en: MagMax Blog.