Fix contents of alacritty and xresources

This commit is contained in:
Vili Sinervä 2025-06-01 21:04:26 +03:00
parent 0594229e45
commit e364af4c2a
Signed by: Vili Sinervä
SSH key fingerprint: SHA256:FladqYjaE4scJY3Hi+gnShZ6ygnTJgixy0I6BAoHyos
2 changed files with 24 additions and 24 deletions

View file

@ -1,13 +1,17 @@
{ pkgs, ... }:
pkgs.writeText "Xresources" ''
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.autohint: false
Xft.hintstyle: hintslight
Xft.lcdfilter: lcddefault
pkgs.writeText "alacritty-conf" ''
[font]
size = 13
Xcursor.theme: xcursor-breeze
Xcursor.size: 0
[cursor]
style.shape = "Beam"
style.blinking = "On"
blink_timeout = 0
unfocused_hollow = false
[keyboard]
bindings = [
{key = "+", mods = "Control | Shift", action = "ResetFontSize"},
{key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
]
''

View file

@ -1,17 +1,13 @@
{ pkgs, ... }:
pkgs.writeText "alacritty-conf" ''
[font]
size = 13
pkgs.writeText "Xresources" ''
Xft.dpi: 96
Xft.antialias: true
Xft.hinting: true
Xft.rgba: rgb
Xft.autohint: false
Xft.hintstyle: hintslight
Xft.lcdfilter: lcddefault
[cursor]
style.shape = "Beam"
style.blinking = "On"
blink_timeout = 0
unfocused_hollow = false
[keyboard]
bindings = [
{key = "+", mods = "Control | Shift", action = "ResetFontSize"},
{key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"},
]
Xcursor.theme: xcursor-breeze
Xcursor.size: 0
''