Add xenodm theming config
This commit is contained in:
parent
379db6b331
commit
950b4d8a91
2 changed files with 74 additions and 0 deletions
58
etc/X11/xenodm/Xresources
Normal file
58
etc/X11/xenodm/Xresources
Normal file
|
@ -0,0 +1,58 @@
|
|||
xlogin.Login.echoPasswd: true
|
||||
xlogin.Login.fail: login failed
|
||||
xlogin.Login.greeting:
|
||||
xlogin.Login.namePrompt: \040login\040
|
||||
xlogin.Login.passwdPrompt: passwd\040
|
||||
|
||||
xlogin.Login.background: black
|
||||
xlogin.Login.foreground: #eeeeee
|
||||
xlogin.Login.failColor: white
|
||||
xlogin.Login.inpColor: black
|
||||
xlogin.Login.promptColor: #eeeeec
|
||||
xlogin.Login.greetColor: #eeeeeC
|
||||
|
||||
xlogin.Login.greetFace: spleen-24
|
||||
xlogin.Login.face: spleen-24
|
||||
xlogin.Login.failFace: spleen-24
|
||||
xlogin.Login.promptFace: spleen-24
|
||||
|
||||
Xmessage*font: -misc-spleen-medium-r-normal--32-320-72-72-c-160-iso10646-1
|
||||
|
||||
|
||||
! Xft settings
|
||||
Xft.autohint: 0
|
||||
Xft.lcdfilter: lcddefault
|
||||
Xft.hintstyle: hintslight
|
||||
Xft.hinting: 1
|
||||
Xft.antialias: 1
|
||||
Xft.rgba: rgb
|
||||
|
||||
! ------------------------------------
|
||||
! Color Scheme for xenodm
|
||||
! ------------------------------------
|
||||
*Background: #282828
|
||||
*foreground: #ebdbb2
|
||||
! Black + DarkGrey
|
||||
*color0: #282828
|
||||
*color8: #928374
|
||||
! DarkRed + Red
|
||||
*color1: #cc241d
|
||||
*color9: #fb4934
|
||||
! DarkGreen + Green
|
||||
*color2: #98971a
|
||||
*color10: #b8bb26
|
||||
! DarkYellow + Yellow
|
||||
*color3: #d79921
|
||||
*color11: #fabd2f
|
||||
! DarkBlue + Blue
|
||||
*color4: #458588
|
||||
*color12: #83a598
|
||||
! DarkMagenta + Magenta
|
||||
*color5: #b16286
|
||||
*color13: #d3869b
|
||||
! DarkCyan + Cyan
|
||||
*color6: #689d6a
|
||||
*color14: #8ec07c
|
||||
! LightGrey + White
|
||||
*color7: #a89984
|
||||
*color15: #ebdbb2
|
16
etc/X11/xenodm/Xsetup_0
Executable file
16
etc/X11/xenodm/Xsetup_0
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Plain Black Background
|
||||
xsetroot -solid black
|
||||
|
||||
# Make sure xmessage can use spleen
|
||||
xset +fp /usr/local/share/fonts/spleen
|
||||
|
||||
# Display custom fortune in window on login screen.
|
||||
/usr/games/fortune $PATHTOCUSTOMFORTUNEFILE > /tmp/widsom | xmessage -buttons "#CLOWNWISDOM" -geometry 2256x500-0-0 -file /tmp/widsom &
|
||||
|
||||
# Do not annoy me into violence
|
||||
xset b off
|
||||
|
||||
# Ensures fortunes display without issues
|
||||
export LC_CTYPE="en_US.UTF-8"
|
Loading…
Reference in a new issue