mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
# this is notes for video: http://www.youtube.com/watch?v=guB4WuVFhtY
|
|
|
|
|
|
## for ~/.tmux.conf
|
|
|
|
# Urlviewer; grab links from any tmux window/pane and open it with external apps
|
|
# https://wiki.archlinux.org/index.php/Tmux#Browsing_URL.27s
|
|
bind-key u capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"'
|
|
|
|
|
|
|
|
## for ~/.urlview
|
|
|
|
# set browser
|
|
# http://does-not-exist.org/mail-archives/mutt-users/msg18479.html
|
|
COMMAND exec >> /tmp/urlview.out 2>&1; set -x; firefox
|
|
|