summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCori Barker <coribarker2@gmail.com>2026-03-22 15:51:23 +0000
committerCori Barker <coribarker2@gmail.com>2026-03-22 15:51:23 +0000
commit6b0089a2c059102b9e7378154d0a191a7c6c2a2a (patch)
tree9f6a853edead114a4c7ee1ac3b2cb36462265321
parent77b774431f5af9d58a9ebf7009bb2b7890b8d196 (diff)
[urxvt] added urxvt config file
-rw-r--r--.Xresources79
1 files changed, 79 insertions, 0 deletions
diff --git a/.Xresources b/.Xresources
new file mode 100644
index 0000000..2b3657a
--- /dev/null
+++ b/.Xresources
@@ -0,0 +1,79 @@
+! ~/.Xresources
+! urxvt configuration
+
+! Font
+URxvt.font: xft:FiraMono Nerd Font:size=10:antialias=true:hinting=true
+URxvt.boldFont: xft:FiraMono Nerd Font:bold:size=10:antialias=true:hinting=true
+
+! Size — start maximized
+URxvt.fullscreen: false
+URxvt.geometry: 220x55
+
+! Scrollbar — hidden
+URxvt.scrollBar: false
+URxvt.scrollTtyOutput: false
+URxvt.scrollWithBuffer: true
+URxvt.scrollTtyKeypress: true
+URxvt.saveLines: 5000
+
+! Transparency (90% opaque — requires a compositor like picom)
+URxvt.depth: 32
+URxvt.background: [90]#000000
+URxvt.foreground: #D8DEE9
+
+! Cursor — filled block, nord blue, blinking
+URxvt.cursorBlink: true
+URxvt.cursorColor: #88C0D0
+URxvt.cursorColor2: #2E3440
+
+! Bell — visual only, no audio
+URxvt.visualBell: false
+URxvt.urgentOnBell: true
+URxvt.bell-command: true
+
+! Padding
+URxvt.internalBorder: 8
+URxvt.externalBorder: 0
+URxvt.lineSpace: 1
+
+! Nord color scheme
+! Black
+URxvt.color0: #2E3440
+URxvt.color8: #4C566A
+! Red
+URxvt.color1: #BF616A
+URxvt.color9: #BF616A
+! Green
+URxvt.color2: #A3BE8C
+URxvt.color10: #A3BE8C
+! Yellow
+URxvt.color3: #EBCB8B
+URxvt.color11: #EBCB8B
+! Blue
+URxvt.color4: #81A1C1
+URxvt.color12: #81A1C1
+! Magenta
+URxvt.color5: #B48EAD
+URxvt.color13: #B48EAD
+! Cyan
+URxvt.color6: #88C0D0
+URxvt.color14: #8FBCBB
+! White
+URxvt.color7: #E5E9F0
+URxvt.color15: #ECEFF4
+
+! Copy/paste with Ctrl+Shift+C/V
+URxvt.keysym.Ctrl-Shift-C: eval:selection_to_clipboard
+URxvt.keysym.Ctrl-Shift-V: eval:paste_clipboard
+
+! URL clicking — open in waterfox
+URxvt.perl-ext-common: default,matcher
+URxvt.url-launcher: waterfox
+URxvt.matcher.button: 1
+URxvt.matcher.rend.0: Uline Bold fg5
+
+! Misc
+URxvt.iso14755: false
+URxvt.iso14755_52: false
+URxvt.loginShell: true
+URxvt.termName: rxvt-unicode-256color \ No newline at end of file