1
0
Fork 0

replace alacritty terminal with kitty

This commit is contained in:
Kim, Jimin 2022-07-04 08:05:52 +09:00
parent 07612ea0ee
commit e8d4688bea
4 changed files with 2179 additions and 43 deletions

View file

@ -1,31 +0,0 @@
colors:
primary:
background: "0x282c34"
foreground: "0xabb2bf"
normal:
black: "0x20232A"
red: "0xe86671"
green: "0x98c379"
yellow: "0xe0af68"
blue: "0x61afef"
magenta: "0xc678dd"
cyan: "0x56b6c2"
white: "0x798294"
bright:
black: "0x21252b"
red: "0xe86671"
green: "0x98c379"
yellow: "0xe0af68"
blue: "0x61afef"
magenta: "0xc678dd"
cyan: "0x56b6c2"
white: "0xabb2bf"
indexed_colors:
- { index: 16, color: "0xd19a66" }
- { index: 17, color: "0xf65866" }
window:
opacity: 0.80

File diff suppressed because it is too large Load diff

View file

@ -1,12 +0,0 @@
from src.util import paru_install, copy_file
name = "Alacritty terminal"
def setup() -> None:
"""terminal app written in rust"""
paru_install("alacritty")
# copy configuration file
copy_file("home/.config/alacritty/alacritty.yml")

View file

@ -0,0 +1,12 @@
from src.util import paru_install, copy_file
name = "Terminal"
def setup() -> None:
"""install and configure the kitty terminal"""
paru_install(["kitty", "kitty-shell-integration"])
# copy configuration file
copy_file("home/.config/kitty/kitty.yml")