Use a local Xresources override
This commit is contained in:
parent
cfc33c429d
commit
f8368cd17f
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
! Use 96 (100%), 120 (125%), 144 (150%), 168 (175%), or 192 (200%).
|
||||||
|
Xft.dpi: 96
|
||||||
|
|
||||||
*color: true
|
*color: true
|
||||||
Emwm*activeBackground: #c0c0c0
|
Emwm*activeBackground: #c0c0c0
|
||||||
Emwm*activeForeground: #202020
|
Emwm*activeForeground: #202020
|
||||||
|
@ -12,7 +15,6 @@ XClock*minuteColor: #c0c0c0
|
||||||
XClock*render: true
|
XClock*render: true
|
||||||
XClock*secondColor: red
|
XClock*secondColor: red
|
||||||
XClock*update: 1
|
XClock*update: 1
|
||||||
Xft.dpi: 100
|
|
||||||
Xft.hintstyle: hintfull
|
Xft.hintstyle: hintfull
|
||||||
Xft.rgba: none
|
Xft.rgba: none
|
||||||
xterm*activeIcon: false
|
xterm*activeIcon: false
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
. $HOME/.profile
|
. $HOME/.profile
|
||||||
xrdb -load $HOME/.Xresources
|
xrdb -load $HOME/.Xresources
|
||||||
|
if test -r $HOME/.Xresources.local
|
||||||
|
then
|
||||||
|
xrdb -override $HOME/.Xresources.local
|
||||||
|
fi
|
||||||
xsetroot -solid '#101010'
|
xsetroot -solid '#101010'
|
||||||
backlight 10
|
backlight 10
|
||||||
mixer vol.mute=1
|
mixer vol.mute=1
|
||||||
|
|
Loading…
Reference in a new issue