aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.Xresources22
-rw-r--r--.local/etc/x/xinitrc5
2 files changed, 26 insertions, 1 deletions
diff --git a/.Xresources b/.Xresources
new file mode 100644
index 0000000..893516a
--- /dev/null
+++ b/.Xresources
@@ -0,0 +1,22 @@
+*.background: #000000
+*.foreground: #eeeeee
+
+*.color0: #696969
+*.color1: #ca674a
+*.color2: #96a967
+*.color3: #d3a94a
+*.color4: #5778c1
+*.color5: #9c35ac
+*.color6: #6eb5f3
+*.color7: #a9a9a9
+
+*.color8: #666666
+*.color9: #d54e53
+*.color10: #b9ca4a
+*.color11: #e7c547
+*.color12: #7aa6da
+*.color13: #c397d8
+*.color14: #70c0b1
+*.color15: #eaeaea
+
+URxvt*font: xft:Liberation Mono:size=14
diff --git a/.local/etc/x/xinitrc b/.local/etc/x/xinitrc
index df3590f..3b10135 100644
--- a/.local/etc/x/xinitrc
+++ b/.local/etc/x/xinitrc
@@ -18,7 +18,10 @@ xset +fp ~/.fonts/Terminus/BDF
xsetroot -cursor_name left_ptr
# load the .Xresources
-xrdb -merge ~/.Xresources
+if command -v xrdb > /dev/null
+then
+ xrdb -merge ~/.Xresources
+fi
# Set a custom layout with xrandr
if [ -f "$HOME/.local/etc/x/layout.sh" ]