aboutsummaryrefslogtreecommitdiff
path: root/.config/alacritty/window.yml
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-10 12:08:27 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-07-10 12:08:27 +0530
commit6bfa2ca06e9a79dd655427b3ef3a8f1cf98ed9ea (patch)
tree36c3af54dea4824a491bbb2197dc56e942cb48ca /.config/alacritty/window.yml
parent610bf8bf4d6c6e0cb1316710b81fdbe4ddc408dc (diff)
Modularized Alacritty config
Diffstat (limited to '.config/alacritty/window.yml')
-rw-r--r--.config/alacritty/window.yml65
1 files changed, 65 insertions, 0 deletions
diff --git a/.config/alacritty/window.yml b/.config/alacritty/window.yml
new file mode 100644
index 0000000..c5aa20f
--- /dev/null
+++ b/.config/alacritty/window.yml
@@ -0,0 +1,65 @@
+background_opacity: 1.0
+
+window:
+ # Window dimensions (changes require restart)
+ #
+ # Number of lines/columns (not pixels) in the terminal. The number of columns
+ # must be at least `2`, while using a value of `0` for columns and lines will
+ # fall back to the window manager's recommended size.
+ #dimensions:
+ # columns: 0
+ # lines: 0
+
+ # Window position (changes require restart)
+ #
+ # Specified in number of pixels.
+ # If the position is not set, the window manager will handle the placement.
+ #position:
+ # x: 0
+ # y: 0
+
+ # Window padding (changes require restart)
+ #
+ # 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.
+ padding:
+ x: 0
+ y: 0
+
+ # Spread additional padding evenly around the terminal content.
+ dynamic_padding: false
+
+ # Window decorations
+ #
+ # Values for `decorations`:
+ # - full: Borders and title bar
+ # - none: Neither borders nor title bar
+ #
+ # Values for `decorations` (macOS only):
+ # - transparent: Title bar, transparent background and title bar buttons
+ # - buttonless: Title bar, transparent background and no title bar buttons
+ decorations: full
+
+ startup_mode: Windowed
+
+ title: Alacritty
+ dynamic_title: true
+
+ # Window class (Linux/BSD only):
+ class:
+ instance: Alacritty
+ general: Alacritty
+
+ # GTK theme variant (Linux/BSD only)
+ #
+ # Override the variant of the GTK theme. Commonly supported values are `dark`
+ # and `light`. Set this to `None` to use the default theme variant.
+ #gtk_theme_variant: None
+
+scrolling:
+ # Maximum number of lines in the scrollback buffer.
+ # Specifying '0' will disable scrolling.
+ history: 20000
+
+ # Scrolling distance multiplier.
+ #multiplier: 3