mirror of
https://github.com/WarrenHood/dotfiles.git
synced 2025-04-29 19:04:58 +01:00
Run neofetch in new shells. Also change alacritty color scheme slightly
This commit is contained in:
parent
c5dfe22aeb
commit
7128ba33eb
|
@ -859,3 +859,34 @@ key_bindings:
|
||||||
|
|
||||||
# Print all received window events.
|
# Print all received window events.
|
||||||
#print_events: false
|
#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'
|
||||||
|
|
||||||
|
|
||||||
|
|
8
setup
8
setup
|
@ -10,7 +10,7 @@ then
|
||||||
echo "Updating Ubuntu"
|
echo "Updating Ubuntu"
|
||||||
sudo apt update && sudo apt upgrade
|
sudo apt update && sudo apt upgrade
|
||||||
echo "Installing tools/utils"
|
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"
|
echo "Installing arc-icon-theme"
|
||||||
mkdir -p ~/git
|
mkdir -p ~/git
|
||||||
git clone https://github.com/horst3180/arc-icon-theme --depth 1 ~/git/arc-icon-theme && cd ~/git/arc-icon-theme
|
git clone https://github.com/horst3180/arc-icon-theme --depth 1 ~/git/arc-icon-theme && cd ~/git/arc-icon-theme
|
||||||
|
@ -23,7 +23,7 @@ else
|
||||||
echo "Updating Arch"
|
echo "Updating Arch"
|
||||||
sudo pacman -Syyu
|
sudo pacman -Syyu
|
||||||
echo "Installing tools/utils"
|
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 systemctl enable --now power-profiles-daemon
|
||||||
sudo thermald --systemd
|
sudo thermald --systemd
|
||||||
|
@ -54,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/.zshrc"
|
||||||
add_to_file 'export PATH="$PATH:$HOME/.scripts"' "$HOME/.bashrc"
|
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"
|
||||||
|
|
Loading…
Reference in a new issue