-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Xresources
104 lines (100 loc) · 3.48 KB
/
.Xresources
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
! ===== fonts
Xft.autohint : 0
Xft.lcdfilter : lcddefault
Xft.hintstyle : hintslight
Xft.hinting : 1
Xft.antialias : 1
Xft.rgba : rgb
! fixed is the one true font - use iso10646 for unicode characters
*font : -misc-fixed-medium-r-semicondensed-*-13-*-*-*-*-*-iso10646-1
! ===== xidle
! drag pointer to lower left corner to lock screen
XIdle*position : sw
! and leave it there for one second.
XIdle*delay : 1
! also lock screen after 5 minutes idle
XIdle*timeout : 300
! ===== xlock
! actually turn the backlight off
XLock.dpmsoff : 1
! plain white-on-black lock screen
XLock.description : off
XLock.echokeys : off
XLock.info :
XLock.background : black
XLock.foreground : white
XLock.mode : blank
XLock.username : username:
XLock.password : password:
XLock.font : -misc-fixed-medium-r-normal-*-15-*-*-*-*-*-iso10646-1
XLock.planfont : -misc-fixed-medium-r-normal-*-13-*-*-*-*-*-iso10646-1
lock*analog : false
XClock*twentyfour : true
XClock*padding : 0
XClock*geometry : -2-2
XClock*render : false
XClock*font : -misc-fixed-bold-r-normal-*-13-*-*-*-*-*-iso10646-1
XClock*height : 12
XClock*background : dimgray
XClock*foreground : white
XClock*borderWidth : 0
! ===== xterm
! zenburn theme - http://kippura.org/zenburnpage
XTerm*background : #000000
XTerm*foreground : #dcdccc
XTerm*cursorColor : #aaaaaa
XTerm*colorUL : #366060
XTerm*underlineColor : #dfaf8f
XTerm*color0 : #3f3f3f
XTerm*color1 : #cc9393
XTerm*color2 : #7f9f7f
XTerm*color3 : #d0bf8f
XTerm*color4 : #6ca0a3
XTerm*color5 : #dc8cc3
XTerm*color6 : #93e0e3
XTerm*color7 : #dcdccc
XTerm*color8 : #000000
XTerm*color9 : #dca3a3
XTerm*color10 : #bfebbf
XTerm*color11 : #f0dfaf
XTerm*color12 : #8cd0d3
XTerm*color13 : #dc8cc3
XTerm*color14 : #93e0e3
XTerm*color15 : #ffffff
! remove the additional black border
XTerm*borderWidth : 0
XTerm*internalBorder : 2
! set TERM env variable to use 256 colors
XTerm*termName : xterm-256color
! make alt key work normally
XTerm*vt100.metaSendsEscape : true
! save ~10,000 lines of scrollback
XTerm*v100.saveLines : 10240
! hide scrollbar
XTerm*vt100.scrollBar : false
! terminal bell tells the window manager to raise urgent flag
XTerm*vt100.bellIsUrgent : true
! no bold fonts - just use brighter colors
XTerm*allowBoldFonts : false
! pressing a key automatically scrolls to the bottom
XTerm*scrollKey : true
! don't allow terminal to go fullscreen
XTerm*fullscreen : never
! clicking a line selects only from the current word forward
XTerm*cutToBeginningOfLine : false
! and don't include a trailing newline in the selection!
XTerm*cutNewline : false
! some black magic to change what characters XTerm considers "word delimiters"
XTerm*charClass : 33:48,36-47:48,58-59:48,61:48,63-64:48,95:48,126:48
! select word on two clicks
XTerm*on2Clicks : word
! select whole line on three clicks
XTerm*on3Clicks : line
! copy-paste
XTerm*VT100*Translations : #override \
~Shift Ctrl <KeyPress> v: insert-selection(CLIPBOARD)\n \
~Shift Ctrl <KeyPress> c: copy-selection(CLIPBOARD)\n
! broken: shift + left click to open selection in web browser
!XTerm*VT100*Translations : #override Shift : exec-formatted("midori '%t'", PRIMARY)
! mouse support in xterm
XTerm*allowMouseOps : true