stockholm/lass/2configs/urxvt.nix

38 lines
1.3 KiB
Nix
Raw Normal View History

2015-07-16 15:51:01 +02:00
{ config, pkgs, ... }:
2017-11-29 15:39:14 +01:00
with import <stockholm/lib>;
2015-07-16 15:51:01 +02:00
{
2017-11-29 15:39:14 +01:00
services.urxvtd.enable = true;
krebs.xresources.resources.urxvt = ''
2020-01-11 20:50:25 +01:00
URxvt.saveLines: 10000
URxvt.scrollBar: false
URxvt.urgentOnBell: true
URxvt.perl-ext: default,matcher
2017-11-29 15:39:14 +01:00
2020-01-11 20:50:25 +01:00
URxvt.url-launcher: /run/current-system/sw/bin/browser-select
URxvt.matcher.pattern.1: \\bwww\\.[\\w-]+\\.[\\w./?&@#-]*[\\w/-]
2017-11-29 15:39:14 +01:00
2020-01-11 20:50:25 +01:00
URxvt.keysym.M-Escape: perl:keyboard-select:activate
URxvt.keysym.M-s: perl:keyboard-select:search
URxvt.keysym.M-u: matcher:select
URxvt.keysym.M-i: matcher:list
2015-07-16 15:51:01 +02:00
URxvt.keysym.M-F1: command:\033]710;${config.lass.fonts.regular}\007\033]711;${config.lass.fonts.bold}\007
URxvt.keysym.M-F2: command:\033]710;xft:Monospace:size=12\007\033]711;xft:Monospace:size=15:bold\007
URxvt.keysym.M-F3: command:\033]710;xft:Monospace:size=18\007\033]711;xft:Monospace:size=20:bold\007
2018-06-27 23:44:02 +02:00
URxvt.keysym.M-F4: command:\033]710;xft:Monospace:size=25\007\033]711;xft:Monospace:size=25:bold\007
URxvt.keysym.M-F5: command:\033]710;xft:Monospace:size=30\007\033]711;xft:Monospace:size=30:bold\007
2020-01-11 20:50:25 +01:00
URxvt.intensityStyles: false
2015-07-16 15:51:01 +02:00
2020-01-11 20:50:25 +01:00
URxvt*background: #000000
URxvt*foreground: #ffffff
2015-07-16 15:51:01 +02:00
!change unreadable blue
2020-01-11 20:50:25 +01:00
URxvt*color4: #268bd2
2017-11-29 15:39:14 +01:00
2020-01-11 20:50:25 +01:00
URxvt*color0: #232342
2015-07-16 15:51:01 +02:00
'';
}