From 9b648a94b7f7dbe2ca64d300f1bbae4534a2b4e6 Mon Sep 17 00:00:00 2001 From: Warren Hood Date: Wed, 1 Mar 2023 01:20:06 +0200 Subject: [PATCH] Run neofetch in new shells. Also change alacritty color scheme slightly (cherry picked from commit 7128ba33eb033c5734364f84eb602100b25f4ff4) --- alacritty/.alacritty.yml | 31 +++++++++++++++++++++++++++++++ setup | 9 ++++++--- 2 files changed, 37 insertions(+), 3 deletions(-) diff --git a/alacritty/.alacritty.yml b/alacritty/.alacritty.yml index 486b36d..4c292b5 100644 --- a/alacritty/.alacritty.yml +++ b/alacritty/.alacritty.yml @@ -859,3 +859,34 @@ key_bindings: # Print all received window events. #print_events: false + +#TomorrowDark colors +colors: + # Default colors + primary: + background: '0x1d1f21' + foreground: '0xc5c8c6' + + # Normal colors + normal: + black: '0x1d1f21' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xc5c8c6' + + # Bright colors + bright: + black: '0x969896' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xffffff' + + diff --git a/setup b/setup index 2aa5f8a..1523b9d 100755 --- a/setup +++ b/setup @@ -10,8 +10,7 @@ then echo "Updating Ubuntu" sudo apt update && sudo apt upgrade echo "Installing tools/utils" - sudo apt install ripgrep fd-find make stow tmux lxsession thunar power-profiles-daemon playerctl network-manager-gnome volumeicon-alsa picom autorandr arandr - + sudo apt install ripgrep fd-find make stow tmux lxsession thunar power-profiles-daemon playerctl network-manager-gnome volumeicon-alsa picom autorandr arandr neofetch echo "Installing arc-icon-theme" mkdir -p ~/git git clone https://github.com/horst3180/arc-icon-theme --depth 1 ~/git/arc-icon-theme && cd ~/git/arc-icon-theme @@ -24,7 +23,7 @@ else echo "Updating Arch" sudo pacman -Syyu echo "Installing tools/utils" - sudo pacman -S ripgrep fd neovim make stow tmux awesome dmenu arandr autorandr volumeicon picom nitrogen network-manager-applet lxsession thunar lxappearance-gtk3 power-profiles-daemon thermald acpi arc-icon-theme playerctl bspwm sxhkd polybar xorg-xsetroot ttf-jetbrains-mono-nerd starship breeze breeze-gtk breeze-icons pass nushell + sudo pacman -S ripgrep fd neovim make stow tmux awesome dmenu arandr autorandr volumeicon picom nitrogen network-manager-applet lxsession thunar lxappearance-gtk3 power-profiles-daemon thermald acpi arc-icon-theme playerctl bspwm sxhkd polybar xorg-xsetroot ttf-jetbrains-mono-nerd starship breeze breeze-gtk breeze-icons pass nushell neofetch sudo systemctl enable --now power-profiles-daemon sudo thermald --systemd @@ -55,3 +54,7 @@ add_to_file 'eval "$(starship init zsh)"' "$HOME/.zshrc" add_to_file 'export PATH="$PATH:$HOME/.scripts"' "$HOME/.zshrc" add_to_file 'export PATH="$PATH:$HOME/.scripts"' "$HOME/.bashrc" + +# Run neofetch when we open a terminal coz it's cool +add_to_file 'neofetch' "$HOME/.bashrc" +add_to_file 'neofetch' "$HOME/.zshrc"