feat: move to alacritty as default terminal
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
[general]
|
||||
import = [
|
||||
"~/.config/alacritty/dank-theme.toml"
|
||||
]
|
||||
|
||||
[font]
|
||||
normal = {
|
||||
family = "Source Code Pro", style = "Regular"
|
||||
}
|
||||
size = 12.0
|
||||
@@ -0,0 +1,31 @@
|
||||
[colors.primary]
|
||||
background = '#0e1513'
|
||||
foreground = '#dde4e1'
|
||||
|
||||
[colors.selection]
|
||||
text = '#dde4e1'
|
||||
background = '#005049'
|
||||
|
||||
[colors.cursor]
|
||||
text = '#0e1513'
|
||||
cursor = '#82d5c9'
|
||||
|
||||
[colors.normal]
|
||||
black = '#0e1513'
|
||||
red = '#f49c6e'
|
||||
green = '#6ad571'
|
||||
yellow = '#fff372'
|
||||
blue = '#6bcabc'
|
||||
magenta = '#1c6258'
|
||||
cyan = '#82d5c9'
|
||||
white = '#d2dfdd'
|
||||
|
||||
[colors.bright]
|
||||
black = '#808a88'
|
||||
red = '#ffc09f'
|
||||
green = '#a5ffab'
|
||||
yellow = '#fff7a5'
|
||||
blue = '#9ceadf'
|
||||
magenta = '#b9fff4'
|
||||
cyan = '#d2fff8'
|
||||
white = '#f8fffe'
|
||||
@@ -9,7 +9,7 @@ local function launcher(program)
|
||||
end
|
||||
end
|
||||
|
||||
hl.bind("SUPER + Return", launcher("kitty"))
|
||||
hl.bind("SUPER + Return", launcher("alacritty"))
|
||||
|
||||
hl.define_submap("launch", function()
|
||||
-- Librewolf
|
||||
@@ -21,9 +21,9 @@ hl.define_submap("launch", function()
|
||||
-- Discord
|
||||
hl.bind("d", launcher("vesktop"), { description = "Launch Discord" })
|
||||
|
||||
-- Kitty
|
||||
hl.bind("k", launcher("kitty"), { description = "Launch kitty" })
|
||||
hl.bind("Return", launcher("kitty"), { description = "Launch kitty" })
|
||||
-- alacritty
|
||||
hl.bind("k", launcher("alacritty"), { description = "Launch alacritty" })
|
||||
hl.bind("Return", launcher("alacritty"), { description = "Launch alacritty" })
|
||||
|
||||
-- Filezilla
|
||||
hl.bind("f", launcher("filezilla"), { description = "Launch Filezilla" })
|
||||
|
||||
Reference in New Issue
Block a user