aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alacritty.yml20
-rwxr-xr-xshenanigans.sh7
2 files changed, 22 insertions, 5 deletions
diff --git a/alacritty.yml b/alacritty.yml
new file mode 100644
index 0000000..0710cb4
--- /dev/null
+++ b/alacritty.yml
@@ -0,0 +1,20 @@
1env:
2 TERM: xterm-256color
3
4window:
5 dimensions:
6 columns: 130
7 lines: 60
8
9font:
10 size: 14
11 normal:
12 family: Berkeley Mono
13 bold:
14 family: Berkeley Mono
15 italic:
16 family: Berkeley Mono
17
18colors:
19 primary:
20 background: "#161616"
diff --git a/shenanigans.sh b/shenanigans.sh
index 86d9f53..41b088f 100755
--- a/shenanigans.sh
+++ b/shenanigans.sh
@@ -1,6 +1,5 @@
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,6 +78,7 @@ backup() {
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
@@ -86,9 +86,6 @@ backup() {
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 88
89 dconf dump /com/gexperts/Tilix/ > tilix.dconf
90 # dconf load /com/gexperts/Tilix/ < tilix.dconf
91
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/ \;
94 91