28 lines
975 B
Nix
28 lines
975 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with config.krebs.lib;
|
|
|
|
pkgs.writeText "Xresources" ''
|
|
URxvt*scrollBar: false
|
|
URxvt*urgentOnBell: true
|
|
URxvt*font: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-*
|
|
URxvt*boldFont: -*-clean-*-*-*-*-*-*-*-*-*-*-iso10646-*
|
|
|
|
! ref https://github.com/muennich/urxvt-perls
|
|
URxvt.perl-lib: ${pkgs.urxvt_perls}/lib/urxvt/perl
|
|
URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select
|
|
URxvt.url-select.launcher: browser-select
|
|
URxvt.url-select.underline: true
|
|
URxvt.keysym.M-u: perl:url-select:select_next
|
|
URxvt.keysym.M-Escape: perl:keyboard-select:activate
|
|
URxvt.keysym.M-s: perl:keyboard-select:search
|
|
|
|
URxvt.intensityStyles: false
|
|
|
|
URxvt*background: #000000
|
|
URxvt*foreground: #ffffff
|
|
|
|
!change unreadable blue
|
|
URxvt*color4: #268bd2
|
|
''
|