Start with Los Abuelos de la Nada (early 80s)—new wave with a sneer. Then Doble Vida (with Los Rodríguez, 1988–1996) gave him swagger: rock & roll soaked in whiskey, sax solos, and midnight confessions. But it’s his solo work that defines the chaos.
In short: his discography is a mess. But it’s a living mess—one that mirrors the glorious, contradictory, obsessive soul of rock & roll itself. Start with Alta Suciedad , but stay for the chaos. You’ll either drown or be reborn. Would you like a shorter version, or a focus on a specific era (e.g., his exile in Spain, or his late-career tango albums)? andres calamaro discografia
Alta Suciedad (1997) is his “commercial” masterpiece—polished yet wounded. But the true Calamaro experience is El Salmón (2000): 42 tracks, 2+ hours, ranging from piano lullabies to drunken rants. Critics called it bloated; fans call it a bible. Then Honestidad Brutal (1999) doubles down: 26 songs of heartbreak and tango-tinged despair. Start with Los Abuelos de la Nada (early
What makes him fascinating? He’s not afraid to be ugly—vocally, lyrically, emotionally. He’ll rhyme highbrow poetry with gutter slang. He’ll release a 5-disc box set ( El Cantante , 2004) that only die-hards will finish. Then he’ll drop a devastating bolero like “Paloma” that proves he’s still a genius. In short: his discography is a mess
Now that you've completed the installation, type tmux to start the first session:
tmux
Split your pane horizontally by typing:
Ctrl+b then %
Note: Ctrl+b is the default prefix key. You can customize this in ~/.tmux.conf file.
Swhich pane by typing:
Ctrl+b then
Ctrl+b then
Detach/Exit session:
Ctrl+b then d
Attach to last session:
tmux a
To change prefix key to Ctrl+a, add the below lines to ~/.tmux.conf:
# change prefix from 'Ctrl-b' to 'Ctrl-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefixTo change prefix key to Ctrl+Space:
# change prefix from 'Ctrl-b' to 'Ctrl-Space'
unbind C-b
set-option -g prefix C-Space
bind-key C-Space send-prefixTmux config changes require reload to be applied, run tmux source-file ~/.tmux.conf from the terminal, or run source-file ~/.tmux.conf from Tmux’s command-line mode to reload.
To configure shortcut for quick reload, add the line:
bind r source-file ~/.tmux.conf\; display "Reloaded!"Now feel free to experiment with the cheat sheet in home page. If you find any missing shortcut, please let me know :D