Compare commits
2 commits
736dc5fd28
...
64418d2963
Author | SHA1 | Date | |
---|---|---|---|
64418d2963 | |||
0cd2d99d7d |
2 changed files with 172 additions and 3 deletions
169
alacritty/.config/alacritty/alacritty.toml
Normal file
169
alacritty/.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,169 @@
|
|||
|
||||
[env]
|
||||
TERM = "alacritty"
|
||||
|
||||
[window]
|
||||
decorations = "none"
|
||||
dynamic_padding = false
|
||||
dynamic_title = true
|
||||
opacity = 1.0
|
||||
startup_mode = "Maximized"
|
||||
title = "Alacritty"
|
||||
|
||||
[window.dimensions]
|
||||
columns = 0
|
||||
lines = 0
|
||||
|
||||
[window.padding]
|
||||
x = 12
|
||||
y = 12
|
||||
|
||||
[scrolling]
|
||||
history = 100000
|
||||
|
||||
[font]
|
||||
builtin_box_drawing = false
|
||||
size = 10
|
||||
|
||||
[font.bold]
|
||||
family = "Intel One Mono"
|
||||
style = "Bold"
|
||||
|
||||
[font.bold_italic]
|
||||
family = "Intel One Mono"
|
||||
style = "Bold Italic"
|
||||
|
||||
[font.glyph_offset]
|
||||
x = 0
|
||||
y = 0
|
||||
|
||||
[font.italic]
|
||||
family = "Intel One Mono"
|
||||
style = "Italic"
|
||||
|
||||
[font.normal]
|
||||
family = "Intel One Mono"
|
||||
style = "Regular"
|
||||
|
||||
[font.offset]
|
||||
x = 0
|
||||
y = 0
|
||||
|
||||
[colors.primary]
|
||||
background = "#2e3440"
|
||||
foreground = "#d8dee9"
|
||||
|
||||
[colors.bright]
|
||||
black = "#4c566a"
|
||||
blue = "#81a1c1"
|
||||
cyan = "#8fbcbb"
|
||||
green = "#a3be8c"
|
||||
magenta = "#b48ead"
|
||||
red = "#bf616a"
|
||||
white = "#eceff4"
|
||||
yellow = "#ebcb8b"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "CellForeground"
|
||||
text = "CellBackground"
|
||||
|
||||
[colors.footer_bar]
|
||||
background = "#434c5e"
|
||||
foreground = "#d8dee9"
|
||||
|
||||
[colors.hints.end]
|
||||
background = "CellBackground"
|
||||
foreground = "CellForeground"
|
||||
|
||||
[colors.hints.start]
|
||||
background = "CellBackground"
|
||||
foreground = "CellForeground"
|
||||
|
||||
[colors.line_indicator]
|
||||
background = "None"
|
||||
foreground = "None"
|
||||
|
||||
[colors.normal]
|
||||
black = "#3b4252"
|
||||
blue = "#81a1c1"
|
||||
cyan = "#88c0d0"
|
||||
green = "#a3be8c"
|
||||
magenta = "#b48ead"
|
||||
red = "#bf616a"
|
||||
white = "#e5e9f0"
|
||||
yellow = "#ebcb8b"
|
||||
|
||||
[colors.search.focused_match]
|
||||
background = "CellBackground"
|
||||
foreground = "CellForeground"
|
||||
|
||||
[colors.search.matches]
|
||||
background = "CellBackground"
|
||||
foreground = "CellForeground"
|
||||
|
||||
[colors.selection]
|
||||
background = "CellForeground"
|
||||
text = "CellBackground"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
cursor = "CellForeground"
|
||||
text = "CellBackground"
|
||||
|
||||
[bell]
|
||||
animation = "EaseOutExpo"
|
||||
color = "#C0C5CE"
|
||||
command = "None"
|
||||
duration = 0
|
||||
|
||||
[selection]
|
||||
save_to_clipboard = false
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
|
||||
|
||||
[cursor]
|
||||
unfocused_hollow = true
|
||||
vi_mode_style = "None"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Paste"
|
||||
key = "V"
|
||||
mods = "Control|Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "Copy"
|
||||
key = "C"
|
||||
mods = "Control|Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageUp"
|
||||
key = "PageUp"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageDown"
|
||||
key = "PageDown"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToTop"
|
||||
key = "Home"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToBottom"
|
||||
key = "End"
|
||||
mods = "Shift"
|
||||
|
||||
[mouse]
|
||||
hide_when_typing = true
|
||||
|
||||
[debug]
|
||||
highlight_damage = false
|
||||
log_level = "Warn"
|
||||
persistent_logging = false
|
||||
print_events = false
|
||||
render_timer = false
|
||||
|
||||
[general]
|
||||
# alacritty.toml
|
||||
|
||||
live_config_reload = true
|
|
@ -1,8 +1,8 @@
|
|||
# XScreenSaver Preferences File
|
||||
# Written by xscreensaver-settings 6.09 for cbax on Sat Oct 12 17:21:35 2024.
|
||||
# Written by xscreensaver-settings 6.09 for cbax on Mon Oct 14 01:28:52 2024.
|
||||
# https://www.jwz.org/xscreensaver/
|
||||
|
||||
timeout: 0:10:00
|
||||
timeout: 0:05:00
|
||||
cycle: 0:10:00
|
||||
lock: False
|
||||
lockTimeout: 0:00:00
|
||||
|
@ -37,7 +37,7 @@ textFile:
|
|||
textProgram: fortune
|
||||
textURL: https://en.wikipedia.org/w/index.php?title=Special:NewPages&feed=rss
|
||||
dialogTheme: default
|
||||
settingsGeom: 1722,618 2332,1061
|
||||
settingsGeom: 1722,618 0,0
|
||||
|
||||
programs: \
|
||||
maze --root \n\
|
||||
|
|
Loading…
Reference in a new issue