switch to kitty as terminal emulator
This commit is contained in:
parent
33c2215f40
commit
ec2e91d063
10 changed files with 61 additions and 98 deletions
|
@ -1,15 +0,0 @@
|
||||||
# Import our style
|
|
||||||
import = ["~/.config/alacritty/dracula.toml"]
|
|
||||||
|
|
||||||
# Lets setup copying to system clipboard
|
|
||||||
[selection]
|
|
||||||
save_to_clipboard = true
|
|
||||||
|
|
||||||
# Change our cursor to a line
|
|
||||||
[cursor]
|
|
||||||
style.shape = "Beam"
|
|
||||||
style.blinking = "On"
|
|
||||||
|
|
||||||
# We want something different for vim
|
|
||||||
vi_mode_style.shape = "Block"
|
|
||||||
vi_mode_style.blinking = "Off"
|
|
|
@ -1,76 +0,0 @@
|
||||||
# Dracula theme for Alacritty
|
|
||||||
# https://draculatheme.com/alacritty
|
|
||||||
#
|
|
||||||
# Color palette
|
|
||||||
# https://spec.draculatheme.com
|
|
||||||
#
|
|
||||||
# Instructions
|
|
||||||
# https://github.com/alacritty/alacritty/blob/master/extra/man/alacritty.5.scd
|
|
||||||
|
|
||||||
[colors.primary]
|
|
||||||
|
|
||||||
background = "#282a36"
|
|
||||||
foreground = "#f8f8f2"
|
|
||||||
bright_foreground = "#ffffff"
|
|
||||||
|
|
||||||
[colors.cursor]
|
|
||||||
|
|
||||||
text = "#282a36"
|
|
||||||
cursor = "#f8f8f2"
|
|
||||||
|
|
||||||
[colors.vi_mode_cursor]
|
|
||||||
|
|
||||||
text = "CellBackground"
|
|
||||||
cursor = "CellForeground"
|
|
||||||
|
|
||||||
[colors.selection]
|
|
||||||
|
|
||||||
text = "CellForeground"
|
|
||||||
background = "#44475a"
|
|
||||||
|
|
||||||
[colors.normal]
|
|
||||||
|
|
||||||
black = "#21222c"
|
|
||||||
red = "#ff5555"
|
|
||||||
green = "#50fa7b"
|
|
||||||
yellow = "#f1fa8c"
|
|
||||||
blue = "#bd93f9"
|
|
||||||
magenta = "#ff79c6"
|
|
||||||
cyan = "#8be9fd"
|
|
||||||
white = "#f8f8f2"
|
|
||||||
|
|
||||||
[colors.bright]
|
|
||||||
|
|
||||||
black = "#6272a4"
|
|
||||||
red = "#ff6e6e"
|
|
||||||
green = "#69ff94"
|
|
||||||
yellow = "#ffffa5"
|
|
||||||
blue = "#d6acff"
|
|
||||||
magenta = "#ff92df"
|
|
||||||
cyan = "#a4ffff"
|
|
||||||
white = "#ffffff"
|
|
||||||
|
|
||||||
[colors.search.matches]
|
|
||||||
|
|
||||||
foreground = "#44475a"
|
|
||||||
background = "#50fa7b"
|
|
||||||
|
|
||||||
[colors.search.focused_match]
|
|
||||||
|
|
||||||
foreground = "#44475a"
|
|
||||||
background = "#ffb86c"
|
|
||||||
|
|
||||||
[colors.footer_bar]
|
|
||||||
|
|
||||||
background = "#282a36"
|
|
||||||
foreground = "#f8f8f2"
|
|
||||||
|
|
||||||
[colors.hints.start]
|
|
||||||
|
|
||||||
foreground = "#282a36"
|
|
||||||
background = "#f1fa8c"
|
|
||||||
|
|
||||||
[colors.hints.end]
|
|
||||||
|
|
||||||
foreground = "#f1fa8c"
|
|
||||||
background = "#282a36"
|
|
35
kitty/.config/kitty/dracula.conf
Normal file
35
kitty/.config/kitty/dracula.conf
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# vim:ft=kitty
|
||||||
|
## name: Dracula
|
||||||
|
## author: Keegan Carruthers-Smith
|
||||||
|
## license: MIT
|
||||||
|
## upstream: https://raw.githubusercontent.com/dracula/kitty/master/dracula.conf
|
||||||
|
|
||||||
|
foreground #f8f8f2
|
||||||
|
background #282a36
|
||||||
|
selection_foreground #ffffff
|
||||||
|
selection_background #44475a
|
||||||
|
url_color #8be9fd
|
||||||
|
color0 #21222c
|
||||||
|
color8 #6272a4
|
||||||
|
color1 #ff5555
|
||||||
|
color9 #ff6e6e
|
||||||
|
color2 #50fa7b
|
||||||
|
color10 #69ff94
|
||||||
|
color3 #f1fa8c
|
||||||
|
color11 #ffffa5
|
||||||
|
color4 #bd93f9
|
||||||
|
color12 #d6acff
|
||||||
|
color5 #ff79c6
|
||||||
|
color13 #ff92df
|
||||||
|
color6 #8be9fd
|
||||||
|
color14 #a4ffff
|
||||||
|
color7 #f8f8f2
|
||||||
|
color15 #ffffff
|
||||||
|
cursor #f8f8f2
|
||||||
|
cursor_text_color background
|
||||||
|
active_tab_foreground #282a36
|
||||||
|
active_tab_background #f8f8f2
|
||||||
|
inactive_tab_foreground #282a36
|
||||||
|
inactive_tab_background #6272a4
|
||||||
|
mark1_foreground #282a36
|
||||||
|
mark1_background #ff5555
|
11
kitty/.config/kitty/kitty.conf
Normal file
11
kitty/.config/kitty/kitty.conf
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Change Theme to Dracula
|
||||||
|
include dracula.conf
|
||||||
|
|
||||||
|
copy_on_select clipboard
|
||||||
|
cursor_shape Beam
|
||||||
|
editor nvim
|
||||||
|
font_family Hack Nerd Font Mono
|
||||||
|
font_size 12.0
|
||||||
|
hide_window_decorations True
|
||||||
|
term xterm-256color
|
||||||
|
adjust_line_height 3
|
|
@ -1,4 +1,4 @@
|
||||||
# created by KDE Plasma, Fri Jul 12 07:22:12 2024
|
# created by KDE Plasma, Wed Jul 24 21:11:27 2024
|
||||||
#
|
#
|
||||||
|
|
||||||
gtk-alternative-button-order = 1
|
gtk-alternative-button-order = 1
|
||||||
|
|
|
@ -253,7 +253,7 @@ switch to next activity=none,,Switch to Next Activity
|
||||||
switch to previous activity=none,,Switch to Previous Activity
|
switch to previous activity=none,,Switch to Previous Activity
|
||||||
toggle do not disturb=none,,Toggle do not disturb
|
toggle do not disturb=none,,Toggle do not disturb
|
||||||
|
|
||||||
[services][Alacritty.desktop]
|
[services][kitty.desktop]
|
||||||
_launch=Meta+Return
|
_launch=Meta+Return
|
||||||
|
|
||||||
[services][org.kde.spectacle.desktop]
|
[services][org.kde.spectacle.desktop]
|
||||||
|
|
|
@ -13,7 +13,7 @@ EdgeBarrier=50
|
||||||
padding=4
|
padding=4
|
||||||
|
|
||||||
[Tiling][0eaf37e9-222e-51ff-a1a6-7d9ec51d0f60]
|
[Tiling][0eaf37e9-222e-51ff-a1a6-7d9ec51d0f60]
|
||||||
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
tiles={"layoutDirection":"vertical","tiles":[{"height":0.5015624999999994},{"height":0.49843750000000064,"layoutDirection":"horizontal","tiles":[{"width":0.421527777777778},{"width":0.578472222222222}]}]}
|
||||||
|
|
||||||
[Tiling][1a885956-9e56-5f36-a40a-8c7d85ccd296]
|
[Tiling][1a885956-9e56-5f36-a40a-8c7d85ccd296]
|
||||||
tiles={"layoutDirection":"horizontal","tiles":[{"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":0.8493055555555543},{"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":0.15069444444444569}]}
|
tiles={"layoutDirection":"horizontal","tiles":[{"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":0.8493055555555543},{"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":0.15069444444444569}]}
|
||||||
|
|
|
@ -80,7 +80,10 @@ immutability=1
|
||||||
plugin=org.kde.plasma.networkmanagement
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
[Containments][10][Applets][20][Configuration]
|
[Containments][10][Applets][20][Configuration]
|
||||||
PreloadWeight=80
|
PreloadWeight=100
|
||||||
|
|
||||||
|
[Containments][10][Applets][20][Configuration][General]
|
||||||
|
currentDetailsTab=details
|
||||||
|
|
||||||
[Containments][10][Applets][21]
|
[Containments][10][Applets][21]
|
||||||
immutability=1
|
immutability=1
|
||||||
|
@ -206,7 +209,9 @@ DialogHeight=540
|
||||||
DialogWidth=720
|
DialogWidth=720
|
||||||
|
|
||||||
[Containments][4][Applets][7][Configuration][General]
|
[Containments][4][Applets][7][Configuration][General]
|
||||||
launchers=applications:systemsettings.desktop,applications:io.gitlab.librewolf-community.desktop,preferred://filemanager,applications:Alacritty.desktop
|
groupingAppIdBlacklist=Alacritty.desktop
|
||||||
|
groupingLauncherUrlBlacklist=applications:Alacritty.desktop
|
||||||
|
launchers=applications:systemsettings.desktop,applications:io.gitlab.librewolf-community.desktop,preferred://filemanager
|
||||||
|
|
||||||
[Containments][4][Applets][8]
|
[Containments][4][Applets][8]
|
||||||
immutability=1
|
immutability=1
|
||||||
|
@ -225,4 +230,4 @@ AppletOrder=5;6;7;8;9;19;27
|
||||||
|
|
||||||
[ScreenMapping]
|
[ScreenMapping]
|
||||||
itemsOnDisabledScreens=
|
itemsOnDisabledScreens=
|
||||||
screenMapping=desktop:/Old Firefox Data,0,78ba6e6d-5dc7-4f18-a39b-c2af6d31bd8a,desktop:/Fortnite.desktop,0,78ba6e6d-5dc7-4f18-a39b-c2af6d31bd8a
|
screenMapping=desktop:/Fortnite.desktop,0,78ba6e6d-5dc7-4f18-a39b-c2af6d31bd8a,desktop:/Old Firefox Data,0,78ba6e6d-5dc7-4f18-a39b-c2af6d31bd8a
|
||||||
|
|
|
@ -4,6 +4,9 @@ Seen=true
|
||||||
[Applications][fr.handbrake.ghb]
|
[Applications][fr.handbrake.ghb]
|
||||||
Seen=true
|
Seen=true
|
||||||
|
|
||||||
|
[Applications][im.nheko.Nheko]
|
||||||
|
Seen=true
|
||||||
|
|
||||||
[Applications][in.cinny.Cinny]
|
[Applications][in.cinny.Cinny]
|
||||||
Seen=true
|
Seen=true
|
||||||
ShowInHistory=false
|
ShowInHistory=false
|
||||||
|
|
|
@ -3,7 +3,7 @@ autoSaveImage=true
|
||||||
clipboardGroup=PostScreenshotCopyImage
|
clipboardGroup=PostScreenshotCopyImage
|
||||||
|
|
||||||
[ImageSave]
|
[ImageSave]
|
||||||
lastImageSaveLocation=file:///home/philipp/Pictures/Screenshots/Screenshot_20240711_195543.png
|
lastImageSaveLocation=file:///home/philipp/Pictures/Screenshots/Screenshot_20240715_222502.png
|
||||||
translatedScreenshotsFolder=Screenshots
|
translatedScreenshotsFolder=Screenshots
|
||||||
|
|
||||||
[VideoSave]
|
[VideoSave]
|
||||||
|
|
Loading…
Reference in a new issue