new toml alacritty

This commit is contained in:
nnduc
2025-05-18 13:00:56 +07:00
parent e9704cc921
commit e2e2441dba
4 changed files with 39 additions and 11 deletions

View File

@ -19,6 +19,6 @@ family = "MesloLGS NF"
[keyboard] [keyboard]
bindings = [ bindings = [
{ key = "T", mods = "Control|Shift", action = "SpawnNewInstance" }, { key = "T", mods = "Control|Shift", action = "SpawnNewInstance" },
{ key: PageUp, action: ScrollLineUp }, { key = "PageUp", action = "ScrollLineUp" },
{ key: PageDown, action: ScrollLineDown }, { key = "PageDown", action = "ScrollLineDown" },
] ]

View File

@ -7,7 +7,7 @@ font:
family: MesloLGS NF family: MesloLGS NF
#style: Bold #style: Bold
# Italic font face # Italic font face
italic: italic:
# value specified for the normal font. # value specified for the normal font.
family: MesloLGS NF family: MesloLGS NF
@ -16,13 +16,13 @@ font:
bold_italic: bold_italic:
family: MesloLGS NF family: MesloLGS NF
#style: Bold Italic #style: Bold Italic
# Point size # Point size
size: 13.0 size: 13.0
window: window:
startup_mode: Maximized startup_mode: Maximized
key_bindings: key_bindings:
- {key: T, mods: Control|Shift, action: SpawnNewInstance} - {key: T, mods: Control|Shift, action: SpawnNewInstance}
- { key: PageUp, action: ScrollLineUp } - { key: PageUp, action: ScrollLineUp }
- { key: PageDown, action: ScrollLineDown } - { key: PageDown, action: ScrollLineDown }

View File

@ -10,7 +10,7 @@
# Please see https://i3wm.org/docs/userguide.html for a complete reference! # Please see https://i3wm.org/docs/userguide.html for a complete reference!
set $mod Mod1 set $mod Mod1
set $wallpaper '/data/sync/images/wallpapers/suse.png' set $wallpaper '/data/sync/Personal/images/wallpapers/suse.png'
# Font for window titles. Will also be used by the bar unless a different font # Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below. # is used in the bar {} block below.
font pango:NotoSans 12 font pango:NotoSans 12
@ -46,9 +46,7 @@ exec --no-startup-id owncloud
exec --no-startup-id pasystray exec --no-startup-id pasystray
exec --no-startup-id polybar exec --no-startup-id polybar
exec --no-startup-id xset m 1/1 0 exec --no-startup-id xset m 1/1 0
exec gentoo-pipewire-launcher restart &
bindsym $mod+t exec xinput --disable 10
bindsym $mod+Shift+t exec xinput --enable 10
set $refresh_i3status killall -SIGUSR1 i3status set $refresh_i3status killall -SIGUSR1 i3status

30
i3/i3status.conf Normal file
View File

@ -0,0 +1,30 @@
general {
interval = 1
colors = true
color_good = '#88b090'
color_degraded = '#ccdc90'
color_bad = '#e89393'
}
#order += "battery 0"
order += "tztime local"
#battery 0 {
# format = "%status %percentage %remaining"
# format_down = ""
# last_full_capacity = true
# integer_battery_capacity = true
# low_threshold = 11
# threshold_type = percentage
# hide_seconds = true
# status_chr = " "
# status_bat = " "
# status_unk = " "
# status_full = " "
#}
tztime local {
format = "%A, %e %B | %H:%M:%S"
}