diff options
Diffstat (limited to 'xresources')
-rw-r--r-- | xresources | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/xresources b/xresources new file mode 100644 index 0000000..8213fad --- /dev/null +++ b/xresources | |||
@@ -0,0 +1,48 @@ | |||
1 | !!! ~/.Xresources -*- conf-xdefaults -*- | ||
2 | |||
3 | !!! XTerm | ||
4 | |||
5 | ! Many of these settings are pulled from | ||
6 | ! https://aduros.com/blog/xterm-its-better-than-you-thought/ | ||
7 | |||
8 | !! Sensible defaults | ||
9 | *.vt100.locale: false | ||
10 | *.vt100.utf8: true | ||
11 | *.vt100.scrollTtyOutput: false | ||
12 | *.vt100.scrollKey: true | ||
13 | *.vt100.bellIsUrgent: true | ||
14 | *.vt100.metaSendsEscape: true | ||
15 | |||
16 | !! Styling | ||
17 | *.vt100.faceName: Recursive Mono Casual Static | ||
18 | *.vt100.boldMode: false | ||
19 | *.vt100.faceSize: 11 | ||
20 | *.vt100.internalBorder: 2 | ||
21 | *.borderWidth: 0 | ||
22 | |||
23 | !! Keybinds | ||
24 | !XTerm.vt100.printerCommand: select-url | ||
25 | !XTerm.vt100.printAttributes: 0 | ||
26 | ! C-S-c: copy to clipboard | ||
27 | ! C-S-v: paste from clipboard | ||
28 | XTerm.vt100.translations: #override \n\ | ||
29 | Ctrl Shift <Key>C: copy-selection(CLIPBOARD) \n\ | ||
30 | Ctrl Shift <Key>V: insert-selection(CLIPBOARD) \n\ | ||
31 | Ctrl Shift <Key>H: set-altscreen(toggle) | ||
32 | |||
33 | ! Security | ||
34 | *allowFontOps: false | ||
35 | |||
36 | !!! Fonts | ||
37 | |||
38 | Xft.antialias: 1 | ||
39 | Xft.rgba: rgb | ||
40 | Xft.autohint: 0 | ||
41 | Xft.hinting: 1 | ||
42 | Xft.hintstyle: hintslight | ||
43 | |||
44 | !!! Xclock | ||
45 | !XClock*width: 60 | ||
46 | !XClock*height: 60 | ||
47 | XClock*x: 0 | ||
48 | XClock*y: 0 \ No newline at end of file | ||