
Tag: konsole
-
Very cool feature!! Konsole can now automatically save all output in a terminal view to a file in real-time.
https://bugs.kde.org/show_bug.cgi?id=208620

-
Alacritty is a terminal emulator written in Rust.
After using it for a couple hours it is definitely faster and more responsive than Konsole!
Currently using Nord theme.


My toml configuration file looks like this:
> cat ~/.config/alacritty/alacritty.toml
#theme = "Nord"
[shell]
program = "/bin/zsh"
[window]
dimensions = {columns = 80, lines = 15}
[font]
size = 18.0
[font.bold]
family = "monospace"
style = "Bold"
[font.bold_italic]
family = "monospace"
style = "Bold Italic"
[font.italic]
family = "monospace"
style = "Italic"
[font.normal]
family = "monospace"
style = "Regular"
[colors.bright]
black = "#4C566A"
blue = "#81A1C1"
cyan = "#8FBCBB"
green = "#A3BE8C"
magenta = "#B48EAD"
red = "#BF616A"
white = "#ECEFF4"
yellow = "#EBCB8B"
[colors.normal]
black = "#3B4252"
blue = "#81A1C1"
cyan = "#88C0D0"
green = "#A3BE8C"
magenta = "#B48EAD"
red = "#BF616A"
white = "#E5E9F0"
yellow = "#EBCB8B"
[colors.primary]
background = "#2E3440"
foreground = "#D8DEE9"
[cursor]
style = "Beam"
[env]
LANG = "en_US.UTF-8"
LC_CTYPE = "en_US.UTF-8"
TERM = "alacritty"




