oscarmlage oscarmlage

Music from terminal: cmus & mpsyt

In a try to go back to my roots, lately, I'm using the terminal as much as I can and it's being a real pleasure. Even to listen music. My consumption habits - talking about music - mostly go through youtube and local music, it depends on the situation. I was used to open whatever browser for youtube and whatever music player for local files (vlc, itunes...). Both (browsers and music players) are RAM drainers, so looked for a lighter solution.

copy-paste mode in tmux 2.4

Some changes has happened in the last version of tmux. Suddenly the copy-paste  was not running but had no time to research the reason until minutes ago: bind-key -Tcopy-mode-vi Escape cancel bind-key -Tcopy-mode-vi 'v' send -X begin-selection bind-key -Tcopy-mode-vi 'V' send -X select-line bind-key -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy" bind-key p paste-buffer unbind -Tcopy-mode-vi Enter bind-key -Tcopy-mode-vi Enter send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy" bind-key -Tcopy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "reattach-to-user-namespace pbcopy" There are a couple of issues (#592, #42) related. Glad this amazing feature is back again.