1 Blog'ed http://www.jukie.net/~bart/blog/tag/urxvt
5 If you find any of this interesting, you may want to create a fork
6 on github. http://github.com/bartman/urxvt-scripts
9 Bart Trojanowski <bart@jukie.net>
12 Miciah Dashiel Butler Masters
24 This script will cycle through URLs in the terminal and let you
25 copy them (y) or launch a browser (<enter>).
27 This script is known to be working, but is likely not bug-free.
30 apt-get install rxvt-unicode xclip git-core
31 git clone git://git.jukie.net/urxvt.git/ urxvt.git
33 cp urxvt.git/mark-yank-urls ~/.urxvt
35 cat >> ~/.Xdefaults <<END
36 URxvt.keysym.M-u: perl:mark-yank-urls:activate_mark_mode
37 URxvt.reverseVideo: true
38 URxvt.perl-lib: /home/jukie/bart/.urxvt/
39 URxvt.perl-ext: selection
40 URxvt.perl-ext: mark-yank-urls
45 This is a general purpose block copy script. Alt-u emulates the
46 mark-yank-urls script. Alt-y is intended to work like the GNU screen
49 WARNING, there are still many bugs in this script.
52 apt-get install rxvt-unicode xclip git-core
53 git clone git://git.jukie.net/urxvt.git/ urxvt.git
55 cp urxvt.git/mark-and-yank ~/.urxvt
57 cat >> ~/.Xdefaults <<END
58 URxvt.keysym.M-y: perl:mark-and-yank:activate_mark_mode
59 URxvt.keysym.M-u: perl:mark-and-yank:activate_mark_url_mode
60 URxvt.perl-lib: /home/jukie/bart/.urxvt/
61 URxvt.perl-ext: mark-and-yank
62 URxvt.urlLauncher: firefox
66 - get rid of globals, use $term->{variable}s
67 - whole screen capture
68 - b,e,w,W,gg,G for movement
69 - merge code with improvements made to mark-yank-urls