resolution changes
This commit is contained in:
parent
23d3b9c71f
commit
88e0e4a28a
5 changed files with 14 additions and 39 deletions
|
@ -1,5 +1,6 @@
|
||||||
!Xft.dpi: 210
|
!Xft.dpi: 210
|
||||||
Xft.dpi: 144
|
!Xft.dpi: 144
|
||||||
|
Xft.dpi: 96
|
||||||
Xft.antialias: 1
|
Xft.antialias: 1
|
||||||
Xft.rgba: rgb
|
Xft.rgba: rgb
|
||||||
Xft.hinting: 1
|
Xft.hinting: 1
|
||||||
|
|
|
@ -26,8 +26,8 @@ window:
|
||||||
# Blank space added around the window in pixels. This padding is scaled
|
# Blank space added around the window in pixels. This padding is scaled
|
||||||
# by DPI and the specified value is always added at both opposing sides.
|
# by DPI and the specified value is always added at both opposing sides.
|
||||||
padding:
|
padding:
|
||||||
x: 1
|
x: 0
|
||||||
y: 1
|
y: 0
|
||||||
|
|
||||||
# Spread additional padding evenly around the terminal content.
|
# Spread additional padding evenly around the terminal content.
|
||||||
dynamic_padding: true
|
dynamic_padding: true
|
||||||
|
@ -37,10 +37,7 @@ window:
|
||||||
# Values for `decorations`:
|
# Values for `decorations`:
|
||||||
# - full: Borders and title bar
|
# - full: Borders and title bar
|
||||||
# - none: Neither borders nor title bar
|
# - none: Neither borders nor title bar
|
||||||
decorations: none
|
decorations: full
|
||||||
|
|
||||||
# When true, alacritty starts maximized.
|
|
||||||
start_maximized: false
|
|
||||||
|
|
||||||
scrolling:
|
scrolling:
|
||||||
# Maximum number of lines in the scrollback buffer.
|
# Maximum number of lines in the scrollback buffer.
|
||||||
|
@ -51,15 +48,6 @@ scrolling:
|
||||||
# scrollback is enabled (history > 0).
|
# scrollback is enabled (history > 0).
|
||||||
multiplier: 3
|
multiplier: 3
|
||||||
|
|
||||||
# Faux Scrolling
|
|
||||||
#
|
|
||||||
# The `faux_multiplier` setting controls the number of lines the terminal
|
|
||||||
# should scroll when the alternate screen buffer is active. This is used
|
|
||||||
# to allow mouse scrolling for applications like `man`.
|
|
||||||
#
|
|
||||||
# Specifying `0` will disable faux scrolling.
|
|
||||||
faux_multiplier: 3
|
|
||||||
|
|
||||||
# Scroll to the bottom when new text is written to the terminal.
|
# Scroll to the bottom when new text is written to the terminal.
|
||||||
auto_scroll: false
|
auto_scroll: false
|
||||||
|
|
||||||
|
@ -92,28 +80,27 @@ tabspaces: 8
|
||||||
font:
|
font:
|
||||||
# Normal (roman) font face
|
# Normal (roman) font face
|
||||||
normal:
|
normal:
|
||||||
family: BlexMono Nerd Font
|
family: IBM Plex Mono
|
||||||
style: Regular
|
style: Regular
|
||||||
# style: Medium
|
|
||||||
|
|
||||||
# Bold font face
|
# Bold font face
|
||||||
bold:
|
bold:
|
||||||
family: BlexMono Nerd Font
|
family: IBM Plex Mono
|
||||||
style: Bold
|
style: SemiBold
|
||||||
|
|
||||||
# Italic font face
|
# Italic font face
|
||||||
italic:
|
italic:
|
||||||
family: BlexMono Nerd Font
|
family: IBM Plex Mono
|
||||||
style: Italic
|
style: Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 9
|
size: 10
|
||||||
|
|
||||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||||
offset:
|
offset:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 2
|
||||||
|
|
||||||
# Glyph offset determines the locations of the glyphs within their cells with
|
# Glyph offset determines the locations of the glyphs within their cells with
|
||||||
# the default being at the bottom. Increasing `x` moves the glyph to the right,
|
# the default being at the bottom. Increasing `x` moves the glyph to the right,
|
||||||
|
@ -122,12 +109,6 @@ font:
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
|
|
||||||
# Display the time it takes to redraw each frame.
|
|
||||||
render_timer: false
|
|
||||||
|
|
||||||
# Keep the log file after quitting Alacritty.
|
|
||||||
persistent_logging: false
|
|
||||||
|
|
||||||
# If `true`, bold text is drawn using the bright color variants.
|
# If `true`, bold text is drawn using the bright color variants.
|
||||||
draw_bold_text_with_bright_colors: true
|
draw_bold_text_with_bright_colors: true
|
||||||
|
|
||||||
|
@ -190,13 +171,6 @@ colors:
|
||||||
cyan: '0x66cccc'
|
cyan: '0x66cccc'
|
||||||
white: '0xdddddd'
|
white: '0xdddddd'
|
||||||
|
|
||||||
# Indexed Colors
|
|
||||||
#
|
|
||||||
# The indexed colors include all colors from 16 to 256.
|
|
||||||
# When these are not set, they're filled with sensible defaults.
|
|
||||||
#indexed_colors:
|
|
||||||
# - { index: 16, color: '0x000000' }
|
|
||||||
|
|
||||||
# Visual Bell
|
# Visual Bell
|
||||||
#
|
#
|
||||||
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once
|
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once
|
||||||
|
|
|
@ -94,7 +94,7 @@ font:
|
||||||
style: Italic
|
style: Italic
|
||||||
|
|
||||||
# Point size
|
# Point size
|
||||||
size: 19
|
size: 10
|
||||||
|
|
||||||
# Offset is the extra space around each character. `offset.y` can be thought of
|
# Offset is the extra space around each character. `offset.y` can be thought of
|
||||||
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
alacritty-light.yml
|
alacritty-dark.yml
|
|
@ -1 +1 @@
|
||||||
--force-device-scale-factor=1.6
|
--force-device-scale-factor=1.0
|
||||||
|
|
Loading…
Reference in a new issue