Updated doc
This commit is contained in:
parent
78cf641878
commit
b3249e81dd
14
README.md
14
README.md
@ -4,19 +4,19 @@ Installation
|
|||||||
------------
|
------------
|
||||||
Simply place the scripts you want to install in the /usr/lib/urxvt/perl/ folder
|
Simply place the scripts you want to install in the /usr/lib/urxvt/perl/ folder
|
||||||
for system-wide availability. You can also put them in a folder of your
|
for system-wide availability. You can also put them in a folder of your
|
||||||
choice, but then you have to add this line to your .Xdefaults:
|
choice, but then you have to add this line to your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.perl-lib: /your/folder/
|
URxvt.perl-lib: /your/folder/
|
||||||
|
|
||||||
See the following sections for information on how to enable the scripts or set
|
See the following sections for information on how to enable the scripts or set
|
||||||
script-specific options and keyboard mappings in your .Xdefaults.
|
script-specific options and keyboard mappings in your .Xdefaults/.Xresources.
|
||||||
|
|
||||||
|
|
||||||
keyboard-select
|
keyboard-select
|
||||||
---------------
|
---------------
|
||||||
Use keyboard shortcuts to select and copy text.
|
Use keyboard shortcuts to select and copy text.
|
||||||
|
|
||||||
After installing, put the following lines in your .Xdefaults:
|
After installing, put the following lines in your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.perl-ext-common: ...,keyboard-select
|
URxvt.perl-ext-common: ...,keyboard-select
|
||||||
URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
||||||
@ -46,7 +46,7 @@ Use keyboard shortcuts to select URLs.
|
|||||||
This should be used as a replacement for the default matcher extension, it also
|
This should be used as a replacement for the default matcher extension, it also
|
||||||
makes URLs clickable with the middle mouse button.
|
makes URLs clickable with the middle mouse button.
|
||||||
|
|
||||||
After installing, put the following lines in your .Xdefaults:
|
After installing, put the following lines in your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.perl-ext-common: ...,url-select
|
URxvt.perl-ext-common: ...,url-select
|
||||||
URxvt.keysym.M-u: perl:url-select:select_next
|
URxvt.keysym.M-u: perl:url-select:select_next
|
||||||
@ -71,7 +71,7 @@ clipboard
|
|||||||
Use keyboard shortcuts to copy the selection to the clipboard and to paste the
|
Use keyboard shortcuts to copy the selection to the clipboard and to paste the
|
||||||
clipboard contents (optionally escaping all special characters).
|
clipboard contents (optionally escaping all special characters).
|
||||||
|
|
||||||
After installing, put the following lines in your .Xdefaults:
|
After installing, put the following lines in your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.perl-ext-common: ...,clipboard
|
URxvt.perl-ext-common: ...,clipboard
|
||||||
URxvt.keysym.M-c: perl:clipboard:copy
|
URxvt.keysym.M-c: perl:clipboard:copy
|
||||||
@ -84,12 +84,12 @@ The default ones are:
|
|||||||
URxvt.copyCommand: xsel -ib
|
URxvt.copyCommand: xsel -ib
|
||||||
URxvt.pasteCommand: xsel -ob
|
URxvt.pasteCommand: xsel -ob
|
||||||
|
|
||||||
If you prefer xclip, then put these lines in your .Xdefaults:
|
If you prefer xclip, then put these lines in your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.copyCommand: xclip -i -selection clipboard
|
URxvt.copyCommand: xclip -i -selection clipboard
|
||||||
URxvt.pasteCommand: xclip -o -selection clipboard
|
URxvt.pasteCommand: xclip -o -selection clipboard
|
||||||
|
|
||||||
On Mac OS X, put these lines in your .Xdefaults:
|
On Mac OS X, put these lines in your .Xdefaults/.Xresources:
|
||||||
|
|
||||||
URxvt.copyCommand: pbcopy
|
URxvt.copyCommand: pbcopy
|
||||||
URxvt.pasteCommand: pbpaste
|
URxvt.pasteCommand: pbpaste
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
# the clipboard contents (optionally escaping all special characters).
|
# the clipboard contents (optionally escaping all special characters).
|
||||||
# Requires xsel to be installed!
|
# Requires xsel to be installed!
|
||||||
|
|
||||||
# Usage: put the following lines in your .Xdefaults:
|
# Usage: put the following lines in your .Xdefaults/.Xresources:
|
||||||
# URxvt.perl-ext-common: ...,clipboard
|
# URxvt.perl-ext-common: ...,clipboard
|
||||||
# URxvt.keysym.M-c: perl:clipboard:copy
|
# URxvt.keysym.M-c: perl:clipboard:copy
|
||||||
# URxvt.keysym.M-v: perl:clipboard:paste
|
# URxvt.keysym.M-v: perl:clipboard:paste
|
||||||
@ -17,10 +17,10 @@
|
|||||||
# The default ones are:
|
# The default ones are:
|
||||||
# URxvt.copyCommand: xsel -ib
|
# URxvt.copyCommand: xsel -ib
|
||||||
# URxvt.pasteCommand: xsel -ob
|
# URxvt.pasteCommand: xsel -ob
|
||||||
# If you prefer xclip, then put these lines in your .Xdefaults:
|
# If you prefer xclip, then put these lines in your .Xdefaults/.Xresources:
|
||||||
# URxvt.copyCommand: xclip -i -selection clipboard
|
# URxvt.copyCommand: xclip -i -selection clipboard
|
||||||
# URxvt.pasteCommand: xclip -o -selection clipboard
|
# URxvt.pasteCommand: xclip -o -selection clipboard
|
||||||
# On Mac OS X, put these lines in your .Xdefaults:
|
# On Mac OS X, put these lines in your .Xdefaults/.Xresources:
|
||||||
# URxvt.copyCommand: pbcopy
|
# URxvt.copyCommand: pbcopy
|
||||||
# URxvt.pasteCommand: pbpaste
|
# URxvt.pasteCommand: pbpaste
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
# Use keyboard shortcuts to select and copy text.
|
# Use keyboard shortcuts to select and copy text.
|
||||||
|
|
||||||
# Usage: put the following lines in your .Xdefaults:
|
# Usage: put the following lines in your .Xdefaults/.Xresources:
|
||||||
# URxvt.perl-ext-common: ...,keyboard-select
|
# URxvt.perl-ext-common: ...,keyboard-select
|
||||||
# URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
# URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
||||||
# The following line overwrites the default Meta-s binding and allows to
|
# The following line overwrites the default Meta-s binding and allows to
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
# This should be used as a replacement for the default matcher extension,
|
# This should be used as a replacement for the default matcher extension,
|
||||||
# it also makes URLs clickable with the middle mouse button.
|
# it also makes URLs clickable with the middle mouse button.
|
||||||
|
|
||||||
# Usage: put the following lines in your .Xdefaults:
|
# Usage: put the following lines in your .Xdefaults/.Xresources:
|
||||||
# URxvt.perl-ext-common: ...,url-select
|
# URxvt.perl-ext-common: ...,url-select
|
||||||
# URxvt.keysym.M-u: perl:url-select:select_next
|
# URxvt.keysym.M-u: perl:url-select:select_next
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user