diff options
| author | jason | 2017-03-02 11:24:38 -0700 |
|---|---|---|
| committer | jason | 2017-03-02 11:24:38 -0700 |
| commit | 6985ed3f37a6c7a28e78b048212df2f65de07b1c (patch) | |
| tree | 569f8bbde4ea59cf72425d3e7d843c8498a75db0 /xorg | |
| parent | 3a1fec1a11fff0cde1641c07e71419ead6679cb4 (diff) | |
| download | dotfiles-6985ed3f37a6c7a28e78b048212df2f65de07b1c.tar.gz dotfiles-6985ed3f37a6c7a28e78b048212df2f65de07b1c.zip | |
Updated layout to support GNU Stow
Diffstat (limited to 'xorg')
| -rw-r--r-- | xorg/.Xmodmap | 11 | ||||
| -rw-r--r-- | xorg/.Xmodmap-pckeyboard_fix | 11 | ||||
| -rw-r--r-- | xorg/.Xresources | 34 |
3 files changed, 56 insertions, 0 deletions
diff --git a/xorg/.Xmodmap b/xorg/.Xmodmap new file mode 100644 index 0000000..2ff5a51 --- /dev/null +++ b/xorg/.Xmodmap | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | clear Lock | ||
| 2 | keycode 66 = Control_L | ||
| 3 | add Control = Control_L | ||
| 4 | |||
| 5 | clear Mod4 | ||
| 6 | clear Mod1 | ||
| 7 | |||
| 8 | keycode 64 = Super_L | ||
| 9 | keycode 133 = Alt_L | ||
| 10 | add Mod1 = Alt_L | ||
| 11 | add Mod4 = Super_L | ||
diff --git a/xorg/.Xmodmap-pckeyboard_fix b/xorg/.Xmodmap-pckeyboard_fix new file mode 100644 index 0000000..a89845d --- /dev/null +++ b/xorg/.Xmodmap-pckeyboard_fix | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | !clear Lock | ||
| 2 | !keycode 66 = Control_L | ||
| 3 | !add Control = Control_L | ||
| 4 | |||
| 5 | clear Mod4 | ||
| 6 | add Mod4 = Super_L | ||
| 7 | keycode 133 = Super_L | ||
| 8 | |||
| 9 | clear Mod1 | ||
| 10 | keycode 64 = Alt_L | ||
| 11 | add Mod1 = Alt_L | ||
diff --git a/xorg/.Xresources b/xorg/.Xresources new file mode 100644 index 0000000..3903541 --- /dev/null +++ b/xorg/.Xresources | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | Xcursor.size: 16 | ||
| 2 | Xft.dpi: 96 | ||
| 3 | |||
| 4 | ! Ctrl+Shift+C and Ctrl+Shift+V for Copy and Paste (using CLIPBOARD) | ||
| 5 | xterm*VT100.Translations: #override Ctrl Shift <Key>V: insert-selection(CLIPBOARD) \n Ctrl Shift <Key>C: copy-selection(CLIPBOARD) | ||
| 6 | |||
| 7 | |||
| 8 | !!!!!!!!! | ||
| 9 | ! URXVT ! | ||
| 10 | !!!!!!!!! | ||
| 11 | URxvt.font: xft:Inconsolata:style=Regular:pixelsize=13 | ||
| 12 | ! do not scroll with output | ||
| 13 | URxvt*scrollTtyOutput: false | ||
| 14 | ! scroll in relation to buffer (with mouse scroll or Shift+Page Up) | ||
| 15 | URxvt*scrollWithBuffer: true | ||
| 16 | ! scroll back to the bottom on keypress | ||
| 17 | URxvt*scrollTtyKeypress: true | ||
| 18 | URxvt.termName: xterm-256color | ||
| 19 | URxvt.scrollBar: False | ||
| 20 | URxvt.reverseVideo: True | ||
| 21 | |||
| 22 | URxvt.perl-ext-common: default,matcher,clipboard | ||
| 23 | |||
| 24 | ! Open URLs with Control+Left Click | ||
| 25 | URxvt.url-launcher: /usr/bin/xdg-open | ||
| 26 | URxvt.matcher.button: C1 | ||
| 27 | URxvt.url-select.underline: false | ||
| 28 | |||
| 29 | |||
| 30 | URxvt.keysym.C-C: perl:clipboard:copy | ||
| 31 | URxvt.keysym.C-V: perl:clipboard:paste | ||
| 32 | URxvt.keysym.C-A-V: perl:clipboard:paste_escaped | ||
| 33 | !disable Ctrl+Shift shortcut that enters ISO14755 mode | ||
| 34 | URxvt.iso14755: false | ||