From 45bb0d11161b1c5077a1415eed6dbd0fd25ccb6a Mon Sep 17 00:00:00 2001 From: jdlugosz963 Date: Fri, 20 Sep 2024 14:16:56 +0200 Subject: Change dotfiles structure, and add guix-channels declaration. --- files/.config/alacritty/alacritty.toml | 46 ++++++++++++++++++++++++++++++ files/.config/alacritty/alacritty.toml.old | 23 +++++++++++++++ files/.config/alacritty/alacritty.yaml | 27 ++++++++++++++++++ 3 files changed, 96 insertions(+) create mode 100644 files/.config/alacritty/alacritty.toml create mode 100644 files/.config/alacritty/alacritty.toml.old create mode 100644 files/.config/alacritty/alacritty.yaml (limited to 'files/.config/alacritty') diff --git a/files/.config/alacritty/alacritty.toml b/files/.config/alacritty/alacritty.toml new file mode 100644 index 0000000..39fd4e9 --- /dev/null +++ b/files/.config/alacritty/alacritty.toml @@ -0,0 +1,46 @@ +[cursor] +style = "Block" +unfocused_hollow = true + +[font] +size = 14 + +[font.italic] +family = "Terminus" +style = "Light Italic" + +[font.normal] +family = "Terminus" +style = "Light" + +[font.offset] +x = 0 +y = 0 + +[window] +dynamic_padding = true +# opacity = 0.90 + +[colors.bright] +black = "0x002b36" +blue = "0x839496" +cyan = "0x93a1a1" +green = "0x586e75" +magenta = "0x6c71c4" +red = "0xcb4b16" +white = "0xfdf6e3" +yellow = "0x657b83" + +[colors.normal] +black = "0x073642" +blue = "0x268bd2" +cyan = "0x2aa198" +green = "0x859900" +magenta = "0xd33682" +red = "0xdc322f" +white = "0xeee8d5" +yellow = "0xb58900" + +[colors.primary] +background = "0x002b36" +foreground = "0x839496" diff --git a/files/.config/alacritty/alacritty.toml.old b/files/.config/alacritty/alacritty.toml.old new file mode 100644 index 0000000..031d81c --- /dev/null +++ b/files/.config/alacritty/alacritty.toml.old @@ -0,0 +1,23 @@ +[cursor] +style = "Block" +unfocused_hollow = true + +[font] +size = 14 + +[font.italic] +family = "Terminus" +style = "Light Italic" + +[font.normal] +family = "Terminus" +style = "Light" + +[font.offset] +x = 0 +y = 0 + +[window] +dynamic_padding = true +opacity = 0.90 + diff --git a/files/.config/alacritty/alacritty.yaml b/files/.config/alacritty/alacritty.yaml new file mode 100644 index 0000000..a4f2823 --- /dev/null +++ b/files/.config/alacritty/alacritty.yaml @@ -0,0 +1,27 @@ +colors: + # Default colors + primary: + background: '0x002b36' + foreground: '0x839496' + + # Normal colors + normal: + black: '0x073642' + red: '0xdc322f' + green: '0x859900' + yellow: '0xb58900' + blue: '0x268bd2' + magenta: '0xd33682' + cyan: '0x2aa198' + white: '0xeee8d5' + + # Bright colors + bright: + black: '0x002b36' + red: '0xcb4b16' + green: '0x586e75' + yellow: '0x657b83' + blue: '0x839496' + magenta: '0x6c71c4' + cyan: '0x93a1a1' + white: '0xfdf6e3' -- cgit v1.2.3