diff --git a/alacritty b/alacritty new file mode 100644 index 0000000..672545a --- /dev/null +++ b/alacritty @@ -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' diff --git a/bashrc b/bashrc index 80beff1..999e3bc 100644 --- a/bashrc +++ b/bashrc @@ -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 diff --git a/install b/install index 7d22fe0..3d9d367 100755 --- a/install +++ b/install @@ -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