Added alacritty config, and changes nw command to ., as well as making it actually work
This commit is contained in:
parent
8b982df9ae
commit
553e697898
34
alacritty
Normal file
34
alacritty
Normal 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
2
bashrc
|
@ -12,7 +12,7 @@ alias grep='grep --color=auto'
|
||||||
alias today='date --iso-8601'
|
alias today='date --iso-8601'
|
||||||
alias c='xclip -sel clip'
|
alias c='xclip -sel clip'
|
||||||
alias p='xclip -sel clip -o'
|
alias p='xclip -sel clip -o'
|
||||||
alias nw="alacritty --working-directory . &"
|
alias .="(alacritty --working-directory . &)"
|
||||||
PS1='[\u@\h \W]\$ '
|
PS1='[\u@\h \W]\$ '
|
||||||
|
|
||||||
set -o vi
|
set -o vi
|
||||||
|
|
4
install
4
install
|
@ -5,6 +5,7 @@ mkdir -p ~/.config/i3
|
||||||
ln -sf ~/.dotfiles/i3config ~/.config/i3/config
|
ln -sf ~/.dotfiles/i3config ~/.config/i3/config
|
||||||
|
|
||||||
mkdir -p ~/.config/mpd
|
mkdir -p ~/.config/mpd
|
||||||
|
mkdir -p ~/.mpd/playlists
|
||||||
ln -sf ~/.dotfiles/mpd.conf ~/.config/mpd/mpd.conf
|
ln -sf ~/.dotfiles/mpd.conf ~/.config/mpd/mpd.conf
|
||||||
|
|
||||||
mkdir -p ~/.config/ncmpcpp
|
mkdir -p ~/.config/ncmpcpp
|
||||||
|
@ -13,6 +14,9 @@ ln -sf ~/.dotfiles/ncmpcppconfig ~/.config/ncmpcpp/config
|
||||||
mkdir -p ~/.config/dunst
|
mkdir -p ~/.config/dunst
|
||||||
ln -sf ~/.dotfiles/dunstrc ~/.config/dunst/dunstrc
|
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/bashrc ~/.bashrc
|
||||||
ln -sf ~/.dotfiles/bash_profile ~/.bash_profile
|
ln -sf ~/.dotfiles/bash_profile ~/.bash_profile
|
||||||
ln -sf ~/.dotfiles/xinitrc ~/.xinitrc
|
ln -sf ~/.dotfiles/xinitrc ~/.xinitrc
|
||||||
|
|
Loading…
Reference in a new issue