diff options
-rw-r--r-- | Xresources | 1 | ||||
-rw-r--r-- | Xresources.dark | 2 | ||||
-rw-r--r-- | Xresources.default | 3 | ||||
-rw-r--r-- | Xresources.light | 2 | ||||
-rwxr-xr-x | bin/recolor.sh | 1 |
5 files changed, 8 insertions, 1 deletions
@@ -41,7 +41,6 @@ URxvt.keysym.F11: perl:fullscreen:switch URxvt*font: xft:monaco:size=11:antialias=false URxvt*scrollBar: false URxvt*internalBorder: 0 -URxvt.borderColor: black ! True transparency URxvt.depth: 32 diff --git a/Xresources.dark b/Xresources.dark index 735f29a..ab44f0d 100644 --- a/Xresources.dark +++ b/Xresources.dark @@ -1,5 +1,7 @@ # include "/home/urbain/.Xresources" +URxvt.borderColor: #002b36 + *background: #002b36 *foreground: #839496 *fadeColor: #002b36 diff --git a/Xresources.default b/Xresources.default index f921ac7..c3af2bd 100644 --- a/Xresources.default +++ b/Xresources.default @@ -1,5 +1,8 @@ # include "/home/urbain/.Xresources" +! Border color +URxvt.borderColor: #3a3a3a + ! Background / Foreground URxvt*background: #3a3a3a URxvt*foreground: #d0d0d0 diff --git a/Xresources.light b/Xresources.light index 0657e91..b8d4012 100644 --- a/Xresources.light +++ b/Xresources.light @@ -1,5 +1,7 @@ # include "/home/urbain/.Xresources" +URxvt.borderColor: #fdf6e3 + *background: #fdf6e3 *foreground: #657b83 *fadeColor: #fdf6e3 diff --git a/bin/recolor.sh b/bin/recolor.sh index 6e87b1f..edd5fa5 100755 --- a/bin/recolor.sh +++ b/bin/recolor.sh @@ -3,5 +3,6 @@ tr -d ' \t' | sed -n ' s/.*background:/\x1b]11;/p s/.*foreground:/\x1b]10;/p +s/.*borderColor:/\x1b]708;/p s/.*color\([0-9][^:]*\):/\x1b]4;\1;/p ' | tr \\n \\a |