From 25fc1f6c58c829f9897f3b5371bb465f3346ccb1 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 1 Aug 2021 09:53:17 +0200 Subject: Switching to alacritty instead of st since st can't display accented character correctly (at least when I type them with the Julia plugin in vim) --- config/alacritty/alacritty.yml | 74 ++++++++++++++++++++++++++++-------------- config/xmonad/xmonad.hs | 2 +- 2 files changed, 50 insertions(+), 26 deletions(-) diff --git a/config/alacritty/alacritty.yml b/config/alacritty/alacritty.yml index ddfce65..419ec21 100644 --- a/config/alacritty/alacritty.yml +++ b/config/alacritty/alacritty.yml @@ -8,36 +8,60 @@ font: normal: family: Fira Code - offset: x: 0 y: 0 -# colorscheme (Dracula) +# gruvbox_dark: https://github.com/eendroroy/alacritty-theme/blob/master/schemes.yaml colors: - # Default colors primary: - background: '#282a36' - foreground: '#f8f8f2' - - # Normal colors + # hard contrast: background = '0x1d2021' + background: '0x282828' + # soft contrast: background = '0x32302f' + foreground: '0xebdbb2' normal: - black: '#000000' - red: '#ff5555' - green: '#50fa7b' - yellow: '#f1fa8c' - blue: '#caa9fa' - magenta: '#ff79c6' - cyan: '#8be9fd' - white: '#bfbfbf' - - # Bright colors + black: '0x282828' + red: '0xcc241d' + green: '0x98971a' + yellow: '0xd79921' + blue: '0x458588' + magenta: '0xb16286' + cyan: '0x689d6a' + white: '0xa89984' bright: - black: '#575b70' - red: '#ff6e67' - green: '#5af78e' - yellow: '#f4f99d' - blue: '#caa9fa' - magenta: '#ff92d0' - cyan: '#9aedfe' - white: '#e6e6e6' + black: '0x928374' + red: '0xfb4934' + green: '0xb8bb26' + yellow: '0xfabd2f' + blue: '0x83a598' + magenta: '0xd3869b' + cyan: '0x8ec07c' + white: '0xebdbb2' + + +# # colorscheme (Dracula) +# colors: +# # Default colors +# primary: +# background: '#282a36' +# foreground: '#f8f8f2' +# # Normal colors +# normal: +# black: '#000000' +# red: '#ff5555' +# green: '#50fa7b' +# yellow: '#f1fa8c' +# blue: '#caa9fa' +# magenta: '#ff79c6' +# cyan: '#8be9fd' +# white: '#bfbfbf' +# # Bright colors +# bright: +# black: '#575b70' +# red: '#ff6e67' +# green: '#5af78e' +# yellow: '#f4f99d' +# blue: '#caa9fa' +# magenta: '#ff92d0' +# cyan: '#9aedfe' +# white: '#e6e6e6' diff --git a/config/xmonad/xmonad.hs b/config/xmonad/xmonad.hs index c25af11..a059cc5 100644 --- a/config/xmonad/xmonad.hs +++ b/config/xmonad/xmonad.hs @@ -25,7 +25,7 @@ import XMonad.Hooks.InsertPosition (Focus (..), Position (..), main = xmonad $ desktopConfig { normalBorderColor = "#1c1c1c" , focusedBorderColor = "#8a8a8a" - , terminal = "st" + , terminal = "alacritty" , layoutHook = layoutHook' , manageHook = manageHook' , modMask = mod4Mask -- mod key to super -- cgit