From 86dba56365e968e68ae0f871c485bef083152f85 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 24 Aug 2022 09:19:06 +0200 Subject: Add Xresources --- .Xresources | 22 ++++++++++++++++++++++ .local/etc/x/xinitrc | 5 ++++- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .Xresources 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" ] -- cgit v1.1