Created
July 29, 2015 00:16
-
-
Save shibumi/0c0506306316a7c0922b to your computer and use it in GitHub Desktop.
my X-Server configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# ~/.xinitrc | |
# | |
# Executed by startx (run your window manager from here) | |
if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
for f in /etc/X11/xinit/xinitrc.d/*; do | |
[ -x "$f" ] && . "$f" | |
done | |
unset f | |
fi | |
#setxkbmap -layout de | |
# exec gnome-session | |
# exec startkde | |
#exec startxfce4 | |
#exec awesome | |
# ...or the Window Manager of your choice | |
#exec /export/c/cpp/batteryd/full/batteryd & | |
conky -c /home/user/.conkyrc2 | while read -r; do xsetroot -name "$REPLY"; done & | |
urxvtd -f | |
xrdb -load .Xresources | |
exec dwm | |
synclient TapButton2=2 | |
synclient EmulateTwoFingerMinZ=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
urxvt*foreground: grey | |
urxvt*background: black | |
urxvt*scrollBar: false | |
urxvt*font: xft:Monospace:pixelsize=11 | |
dmenu*font: Dejavu Sans Mono-9 | |
!dmenu*font: Monospace-9 | |
!urxvt*.transparent: true | |
!urxvt*.shading: 40 | |
!!!!!!!!!!OLD COLOURS!!!!!!!!!!! | |
! Normal | |
! color0 black | |
! color1 red | |
! color2 green | |
! color3 yellow | |
! color4 blue | |
! color5 purple | |
! color6 cyan | |
! color7 white | |
!urxvt*color0: #000000 | |
!urxvt*color1: #CD0000 | |
!urxvt*color2: #00CD00 | |
!urxvt*color3: #CDCD00 | |
!urxvt*color4: #0000CD | |
!urxvt*color5: #CD00CD | |
!urxvt*color6: #00CDCD | |
!urxvt*color7: #E5E5E5 | |
! Light | |
! color8 black | |
! color9 red | |
! color10 green | |
! color11 yellow | |
! color12 blue | |
! color13 purple | |
! color14 cyan | |
! color15 white | |
!urxvt*color8: #7F7F7F | |
!urxvt*color9: #FF0000 | |
!urxvt*color10: #00FF00 | |
!urxvt*color11: #FFFF00 | |
!urxvt*color12: #5C5CFF | |
!urxvt*color13: #FF00FF | |
!urxvt*color14: #00FFFF | |
!urxvt*color15: #FFFFFF | |
!! base16!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!{{{ | |
!!!!!!!!!!!!OLD COLOURS END!!!!!!!!!!!!!!!!! | |
#define base00 #151515 | |
#define base01 #9bc63c | |
#define base02 #f0a63e | |
#define base03 #505050 | |
#define base04 #50aacf | |
#define base05 #d0d0d0 | |
#define base06 #bb64a9 | |
#define base07 #ffffff | |
#define base08 #ac4142 | |
#define base09 #be2f30 | |
#define base0A #f4bf75 | |
#define base0B #90a959 | |
#define base0C #75b5aa | |
#define base0D #6a9fb5 | |
#define base0E #aa759f | |
#define base0F #5dcdba | |
*.foreground: base05 | |
*.background: base00 | |
*.cursorColor: base05 | |
!Black | |
*.color0: base00 | |
*.color8: base03 | |
!Red | |
*.color1: base08 | |
*.color9: base09 | |
!Green | |
*.color2: base0B | |
*.color10: base01 | |
!Yellow | |
*.color3: base0A | |
*.color11: base02 | |
!Blue | |
*.color4: base0D | |
*.color12: base04 | |
!Magenta | |
*.color5: base0E | |
*.color13: base06 | |
!Cyan | |
*.color6: base0C | |
*.color14: base0F | |
!White | |
*.color7: base05 | |
*.color15: base07 | |
!! | |
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!}}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment