Added alacritty config, and changes nw command to ., as well as making it actually work

This commit is contained in:
termite 2025-04-24 09:38:54 -07:00
parent 8b982df9ae
commit 553e697898
3 changed files with 39 additions and 1 deletions

34
alacritty Normal file
View file

@ -0,0 +1,34 @@
[font]
size = 11.0
[font.normal]
family = "monospace"
# Colours (Monokai Charcoal)
# Default Colours
[colors.primary]
background = '#000000'
foreground = '#FFFFFF'
# Normal Colours
[colors.normal]
black = '#1a1a1a'
red = '#f4005f'
green = '#98e024'
yellow = '#fa8419'
blue = '#9d65ff'
magenta = '#f4005f'
cyan = '#58d1eb'
white = '#c4c5b5'
# Bright Colours
[colors.bright]
black = '#625e4c'
red = '#f4005f'
green = '#98e024'
yellow = '#e0d561'
blue = '#9d65ff'
magenta = '#f4005f'
cyan = '#58d1eb'
white = '#f6f6ef'

2
bashrc
View file

@ -12,7 +12,7 @@ alias grep='grep --color=auto'
alias today='date --iso-8601'
alias c='xclip -sel clip'
alias p='xclip -sel clip -o'
alias nw="alacritty --working-directory . &"
alias .="(alacritty --working-directory . &)"
PS1='[\u@\h \W]\$ '
set -o vi

View file

@ -5,6 +5,7 @@ mkdir -p ~/.config/i3
ln -sf ~/.dotfiles/i3config ~/.config/i3/config
mkdir -p ~/.config/mpd
mkdir -p ~/.mpd/playlists
ln -sf ~/.dotfiles/mpd.conf ~/.config/mpd/mpd.conf
mkdir -p ~/.config/ncmpcpp
@ -13,6 +14,9 @@ ln -sf ~/.dotfiles/ncmpcppconfig ~/.config/ncmpcpp/config
mkdir -p ~/.config/dunst
ln -sf ~/.dotfiles/dunstrc ~/.config/dunst/dunstrc
mkdir -p ~/.config/alacritty
ln -sf ~/.dotfiles/alacritty ~/.config/alacritty/alacritty.toml
ln -sf ~/.dotfiles/bashrc ~/.bashrc
ln -sf ~/.dotfiles/bash_profile ~/.bash_profile
ln -sf ~/.dotfiles/xinitrc ~/.xinitrc