replace alacritty terminal with kitty
This commit is contained in:
parent
07612ea0ee
commit
e8d4688bea
4 changed files with 2179 additions and 43 deletions
|
@ -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
|
2167
home/.config/kitty/kitty.conf
Normal file
2167
home/.config/kitty/kitty.conf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -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")
|
12
src/setup/apps/terminal.py
Normal file
12
src/setup/apps/terminal.py
Normal 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")
|
Loading…
Add table
Add a link
Reference in a new issue