Added alacritty config

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2024-03-17 14:02:47 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2024-03-17 14:02:47 +0100
Commit c136c9be896c361f7b14d945abbd46462cb73a99 (patch)
-rw-r--r-- alacritty.yml 20
-rwxr-xr-x shenanigans.sh 7
2 files changed, 22 insertions, 5 deletions
diff --git a/alacritty.yml b/alacritty.yml
  
1
env:
  
2
  TERM: xterm-256color
  
3
  
  
4
window:
  
5
  dimensions:
  
6
    columns: 130
  
7
    lines: 60
  
8
  
  
9
font:
  
10
  size: 14
  
11
  normal:
  
12
    family: Berkeley Mono
  
13
  bold:
  
14
    family: Berkeley Mono
  
15
  italic:
  
16
    family: Berkeley Mono
  
17
  
  
18
colors:
  
19
  primary:
  
20
    background: "#161616"
diff --git a/shenanigans.sh b/shenanigans.sh
1
# Software list.
1
# Software list.
2
# cifs-utils tree s3cmd xclip mc gnupg ripgrep
2
# cifs-utils tree s3cmd xclip mc gnupg ripgrep jq xmlstarlet tilix fzf hx newsbeuter
3
# jq xmlstarlet tilix fzf hx newsbeuter
  
4
  
3
  
5
# Magical environment variables.
4
# Magical environment variables.
6
  
5
  
...
79
	cp /home/$USER/.gitconfig gitconfig
78
	cp /home/$USER/.gitconfig gitconfig
80
  
79
  
81
	cp /home/$USER/.vimrc vimrc
80
	cp /home/$USER/.vimrc vimrc
  
81
	cp /home/$USER/.alacritty.yml alacritty.yml
82
	cp /home/$USER/.config/helix/config.toml config.toml
82
	cp /home/$USER/.config/helix/config.toml config.toml
83
	cp /home/$USER/.newsboat/urls urls
83
	cp /home/$USER/.newsboat/urls urls
84
	cp /home/$USER/.newsboat/cache.db cache.db
84
	cp /home/$USER/.newsboat/cache.db cache.db
85
  
85
  
86
	cp -Rf /home/$USER/.ssh/ ./
86
	cp -Rf /home/$USER/.ssh/ ./
87
	cp -Rf /home/$USER/.aws/ ./
87
	cp -Rf /home/$USER/.aws/ ./
88
  
  
89
	dconf dump /com/gexperts/Tilix/ > tilix.dconf
  
90
	# dconf load /com/gexperts/Tilix/ < tilix.dconf
  
91
  
88
  
92
	find /home/$USER/Videos -type f -name "*.webm" -exec cp {} $VHOME/videos/ \;
89
	find /home/$USER/Videos -type f -name "*.webm" -exec cp {} $VHOME/videos/ \;
93
	find /home/$USER/Pictures -type f -name "*.png" -exec cp {} $VHOME/pictures/ \;
90
	find /home/$USER/Pictures -type f -name "*.png" -exec cp {} $VHOME/pictures/ \;
...