diff --git a/alacritty.org b/alacritty.org new file mode 100644 index 0000000..55d5191 --- /dev/null +++ b/alacritty.org @@ -0,0 +1,73 @@ +#+TITLE: Alacritty Configuration +#+SETUPFILE: ./setup/org-setup-file.org +#+PROPERTY: header-args+ :comments none +#+PROPERTY: header-args+ :mkdirp yes +#+PROPERTY: header-args+ :tangle ~/.config/alacritty/alacritty.yml + +* Fonts +#+begin_src yaml +font: + normal: + family: Hack Nerd Font Mono + style: Regular + + bold: + family: Hack Nerd Font Mono + style: Bold + + italic: + family: Hack Nerd Font Mono + style: Italic + + bold_italic: + family: Hack Nerd Font Mono + style: Bold Italic + + size: 10.0 +#+end_src + +* Colors +#+begin_src yaml +colors: + primary: + background: &gruvbox_dark_bg '#32302f' + foreground: '#fbf1c7' + bright_foreground: '#f9f5d7' + dim_foreground: '#f2e5bc' + cursor: + text: CellBackground + cursor: CellForeground + vi_mode_cursor: + text: CellBackground + cursor: CellForeground + selection: + text: CellBackground + background: CellForeground + bright: + black: '#928374' + red: '#fb4934' + green: '#b8bb26' + yellow: '#fabd2f' + blue: '#83a598' + magenta: '#d3869b' + cyan: '#8ec07c' + white: '#ebdbb2' + normal: + black: *gruvbox_dark_bg + red: '#cc241d' + green: '#98971a' + yellow: '#d79921' + blue: '#458588' + magenta: '#b16286' + cyan: '#689d6a' + white: '#a89984' + dim: + black: '#32302f' + red: '#9d0006' + green: '#79740e' + yellow: '#b57614' + blue: '#076678' + magenta: '#8f3f71' + cyan: '#427b58' + white: '#928374' +#+end_src diff --git a/bash.org b/bash.org index 76e661b..ffc7f01 100644 --- a/bash.org +++ b/bash.org @@ -282,19 +282,13 @@ fi ** Export some default applications #+begin_src bash export EDITOR="nvim" -export TERMINAL="termite" +export TERMINAL="alacritty" export BROWSER="qutebrowser" export READER="zathura" export FILE="ranger" #+END_SRC ** Exports -*** Term -This is important for termite to work when sshing in remote machines. -#+begin_src bash -export TERM=xterm-color -#+end_src - *** XDG Default #+begin_src bash export XDG_CONFIG_HOME="$HOME/.config" diff --git a/docs/termite.html b/docs/termite.html deleted file mode 100644 index 56df164..0000000 --- a/docs/termite.html +++ /dev/null @@ -1,165 +0,0 @@ - - - - - - -Termite Configuration - - - - - - -
- UP - | - HOME -
-

Termite Configuration

-
-

Table of Contents

-
- -
-
- -
-

Options

-
-
-
[options]
-  #allow_bold = true
-  #audible_bell = false
-  #bold_is_bright = true
-  clickable_url = true
-  #dynamic_title = true
-  font = Hack Nerd Font Mono 13px
-  #fullscreen = true
-  #icon_name = terminal
-  mouse_autohide = true
-  #scroll_on_output = false
-  #scroll_on_keystroke = true
-  # Length of the scrollback buffer, 0 disabled the scrollback buffer
-  # and setting it to a negative value means "infinite scrollback"
-  scrollback_lines = -1
-  search_wrap = true
-  #urgent_on_bell = true
-  #hyperlinks = false
-
-  # $BROWSER is used by default if set, with xdg-open as a fallback
-  #browser = xdg-open
-
-  # Hide links that are no longer valid in url select overlay mode
-  #filter_unmatched_urls = true
-
-  # Emit escape sequences for extra modified keys
-  #modify_other_keys = false
-
-  # set size hints for the window
-  #size_hints = false
-
-  # "off", "left" or "right"
-  #scrollbar = off
-
-  highlight = #2f2f2f
-
-
-
-
- -
-

Hints

-
-
-
[hints]
-  #padding = 2
-  #border = #3f3f3f
-  #border_width = 0.5
-  #roundness = 2.0
-
-
-
-
- -
-

Colors

-
-
-
[colors]
-  # Base16 Gruvbox dark, soft
-  # Author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox)
-
-  # fg2
-  foreground          = #d5c4a1
-  # fg1
-  foreground_bold     = #ebdbb2
-  cursor              = #ebdbb2
-  # bg0_s
-  cursor_foreground   = #32302f
-  background          = #32302f
-
-  # 16 color space
-
-  # bg0_s
-  color0  = #32302f
-  # bg3
-  color8  = #665c54
-  # fb2
-  color7  = #d5c4a1
-  # fg0
-  color15 = #fbf1c7
-
-  # Red
-  color1  = #fb4934
-  color9  = #fb4934
-
-  # Green
-  color2  = #b8bb26
-  color10 = #b8bb26
-
-  # Yellow
-  color3  = #fabd2f
-  color11 = #fabd2f
-
-  # Blue
-  color4  = #83a598
-  color12 = #83a598
-
-  # Purple
-  color5  = #d3869b
-  color13 = #d3869b
-
-  # Teal
-  color6  = #8ec07c
-  color14 = #8ec07c
-
-  # Extra colors
-  # orange
-  color16 = #fe8019
-  # orange
-  color17 = #d65d0e
-  # bg1
-  color18 = #3c3836
-  # bg2
-  color19 = #504945
-  # fg3
-  color20 = #bdae93
-  # fg
-  color21 = #ebdbb2
-
-
-
-
-
-
-

Author: Dehaeze Thomas

-

Created: 2021-04-25 dim. 19:10

-
- - diff --git a/index.org b/index.org index 165ee0b..b4fd9cf 100644 --- a/index.org +++ b/index.org @@ -17,7 +17,7 @@ There are Specific configuration files for: - *Display Server*: [[file:xconfig.org][Xorg]] - *Editors*: [[file:vim.org][Neovim]] and [[./doom.org][Emacs (Doom)]] ([[file:emacs-library-babel.org][library of babel]], [[file:emacs-snippets.org][snippets]]) - *Shell*: [[file:bash.org][Bash]] -- *Terminal Emulator*: [[file:termite.org][Termite]] +- *Terminal Emulator*: [[file:alacritty.org][Alacritty]] - *Terminal Multiplexer* [[file:tmux.org][Tmux]] - *Image Setup*: [[file:image.org][Sxiv]] - *Music Setup*: [[file:music.org][Ncmpcpp, Mopidy and Beets]] diff --git a/install.org b/install.org index 18ce404..eb1a36e 100644 --- a/install.org +++ b/install.org @@ -48,17 +48,17 @@ And configured with the following command: =pass= can be used as credential helper for git repositories. -* =termite= - Terminal -[[https://github.com/thestinger/termite][Termite]] is a very nice keyboard-centric terminal. +* =alacritty= - Terminal +[[https://github.com/alacritty/alacritty][Alacritty]] is a very nice keyboard-centric terminal. It can be installed like so: #+begin_src bash - yay -S termite + yay -S alacritty #+end_src -Its configuration file is described [[file:termite.org][here]]. +Its configuration file is described [[file:alacritty.org][here]]. -#+caption: =termite= - Cheatsheet +#+caption: =alacritty= - Cheatsheet | Command | Usage | |--------------------+-------------------------| | =ctrl-shift-x= | activate url hints mode | diff --git a/termite.org b/termite.org deleted file mode 100644 index 8684f7c..0000000 --- a/termite.org +++ /dev/null @@ -1,118 +0,0 @@ -#+TITLE: Termite Configuration -#+SETUPFILE: ./setup/org-setup-file.org -#+PROPERTY: header-args+ :comments both -#+PROPERTY: header-args+ :mkdirp yes -#+PROPERTY: header-args+ :tangle ~/.config/termite/config - -* Options -#+BEGIN_SRC conf -[options] - #allow_bold = true - #audible_bell = false - #bold_is_bright = true - clickable_url = true - #dynamic_title = true - font = Hack Nerd Font Mono 13px - #fullscreen = true - #icon_name = terminal - mouse_autohide = true - #scroll_on_output = false - #scroll_on_keystroke = true - # Length of the scrollback buffer, 0 disabled the scrollback buffer - # and setting it to a negative value means "infinite scrollback" - scrollback_lines = -1 - search_wrap = true - #urgent_on_bell = true - #hyperlinks = false - - # $BROWSER is used by default if set, with xdg-open as a fallback - #browser = xdg-open - - # Hide links that are no longer valid in url select overlay mode - #filter_unmatched_urls = true - - # Emit escape sequences for extra modified keys - #modify_other_keys = false - - # set size hints for the window - #size_hints = false - - # "off", "left" or "right" - #scrollbar = off - - highlight = #2f2f2f -#+END_SRC - -* Hints -#+BEGIN_SRC conf -[hints] - #padding = 2 - #border = #3f3f3f - #border_width = 0.5 - #roundness = 2.0 -#+END_SRC - -* Colors -#+BEGIN_SRC conf -[colors] - # Base16 Gruvbox dark, soft - # Author: Dawid Kurek (dawikur@gmail.com), morhetz (https://github.com/morhetz/gruvbox) - - # fg2 - foreground = #d5c4a1 - # fg1 - foreground_bold = #ebdbb2 - cursor = #ebdbb2 - # bg0_s - cursor_foreground = #32302f - background = #32302f - - # 16 color space - - # bg0_s - color0 = #32302f - # bg3 - color8 = #665c54 - # fb2 - color7 = #d5c4a1 - # fg0 - color15 = #fbf1c7 - - # Red - color1 = #fb4934 - color9 = #fb4934 - - # Green - color2 = #b8bb26 - color10 = #b8bb26 - - # Yellow - color3 = #fabd2f - color11 = #fabd2f - - # Blue - color4 = #83a598 - color12 = #83a598 - - # Purple - color5 = #d3869b - color13 = #d3869b - - # Teal - color6 = #8ec07c - color14 = #8ec07c - - # Extra colors - # orange - color16 = #fe8019 - # orange - color17 = #d65d0e - # bg1 - color18 = #3c3836 - # bg2 - color19 = #504945 - # fg3 - color20 = #bdae93 - # fg - color21 = #ebdbb2 -#+END_SRC