diff options
| author | Peter Son Struschka <me@peter-struschka.com> | 2018-09-03 20:14:42 +0700 |
|---|---|---|
| committer | Peter Son Struschka <me@peter-struschka.com> | 2018-09-03 20:14:42 +0700 |
| commit | 401f9b20dc925eb5446998e59c9a7d6f23ad57c1 (patch) | |
| tree | e47f691604796d70ca05bc2406c6126dcf3c34a4 | |
| parent | 6212f72fed1cdf7c456c289f145a00c901a41252 (diff) | |
| download | dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.tar.gz dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.tar.bz2 dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.tar.lz dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.tar.xz dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.tar.zst dotfiles-401f9b20dc925eb5446998e59c9a7d6f23ad57c1.zip | |
Added X config
| -rwxr-xr-x | x/.Xresources | 30 | ||||
| -rwxr-xr-x | x/.Xresources.dark | 56 | ||||
| -rwxr-xr-x | x/.xinitrc | 4 |
3 files changed, 90 insertions, 0 deletions
diff --git a/x/.Xresources b/x/.Xresources new file mode 100755 index 0000000..b2bc1e3 --- /dev/null +++ b/x/.Xresources @@ -0,0 +1,30 @@ +#if __has_include(".extend.Xresources") +#include ".extend.Xresources" +#endif +#include ".Xresources.dark" + +! ^ The above lines are no comments! +! Leave them as they are if a file ~/.extend.Xresources is being used on your system. +! config can be added there or also here below. +! For comments use "!" + +Xft.dpi: 96 +Xft.antialias: true +Xft.hinting: true +Xft.rgba: rgb +Xft.autohint: false +Xft.hintstyle: hintslight +Xft.lcdfilter: lcddefault + +URxvt.internalBrder: 0 +URxvt.externalBorder: 0 +URxvt.intensityStyles: false +URxvt.font: xft:monospace:size16 +URxvt.scrollBar: false +URxvt*fading: 30 + +XTerm*background: #2b2b2b +XTerm*foreground: #e7e7e7 +XTerm*pointerColor: #16A085 +XTerm*faceName: Fixed +XTerm*faceSize: 11 diff --git a/x/.Xresources.dark b/x/.Xresources.dark new file mode 100755 index 0000000..6db1ab8 --- /dev/null +++ b/x/.Xresources.dark @@ -0,0 +1,56 @@ +#define S_base03 #002b36 +#define S_base02 #073642 +#define S_base01 #586e75 +#define S_base00 #657b83 +#define S_base0 #839496 +#define S_base1 #93a1a1 +#define S_base2 #eee8d5 +#define S_base3 #fdf6e3 + +*background: S_base03 +*foreground: S_base0 +*fadeColor: S_base03 +*cursorColor: S_base1 +*pointerColorBackground:S_base01 +*pointerColorForeground:S_base1 + +#define S_yellow #b58900 +#define S_orange #cb4b16 +#define S_red #dc322f +#define S_magenta #d33682 +#define S_violet #6c71c4 +#define S_blue #268bd2 +#define S_cyan #2aa198 +#define S_green #859900 + +!! black dark/light +*color0: S_base02 +*color8: S_base03 + +!! red dark/light +*color1: S_red +*color9: S_orange + +!! green dark/light +*color2: S_green +*color10: S_base01 + +!! yellow dark/light +*color3: S_yellow +*color11: S_base00 + +!! blue dark/light +*color4: S_blue +*color12: S_base0 + +!! magenta dark/light +*color5: S_magenta +*color13: S_violet + +!! cyan dark/light +*color6: S_cyan +*color14: S_base1 + +!! white dark/light +*color7: S_base2 +*color15: S_base3 diff --git a/x/.xinitrc b/x/.xinitrc new file mode 100755 index 0000000..fccc017 --- /dev/null +++ b/x/.xinitrc @@ -0,0 +1,4 @@ +setxkbmap -layout us,us -variant ,dvp -option grp:shifts_toggle + +#exec startxfce4 +exec i3 |
