Compare commits
4 Commits
c228c08ad8
...
7295fd6057
Author | SHA1 | Date | |
---|---|---|---|
|
7295fd6057 | ||
|
a8ec6b83e2 | ||
|
ceb4daf128 | ||
|
6848c459f7 |
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
bash system-ubuntu.bash
|
bash os.bash
|
||||||
bash tools.bash
|
bash tools.bash
|
||||||
bash fonts.bash
|
bash fonts.bash
|
||||||
bash config.bash
|
bash config.bash
|
||||||
|
@ -4,8 +4,11 @@
|
|||||||
|
|
||||||
git config --global user.name "Xavier Logerais"
|
git config --global user.name "Xavier Logerais"
|
||||||
git config --global user.email "xavier@logerais.com"
|
git config --global user.email "xavier@logerais.com"
|
||||||
git config --global rerere.enabled 1
|
|
||||||
|
git config --global credential.helper cache
|
||||||
|
|
||||||
git config --global merge.conflictstyle diff3
|
git config --global merge.conflictstyle diff3
|
||||||
|
git config --global rerere.enabled 1
|
||||||
|
|
||||||
cat <<EOF >~/.gitignore
|
cat <<EOF >~/.gitignore
|
||||||
### asdf ###
|
### asdf ###
|
||||||
@ -19,4 +22,8 @@ cat <<EOF >~/.gitignore
|
|||||||
.venv
|
.venv
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF >~/.gitattributes
|
||||||
|
EOF
|
||||||
|
|
||||||
git config --global core.excludesfile ~/.gitignore
|
git config --global core.excludesfile ~/.gitignore
|
||||||
|
git config --global core.attributesfile ~/.gitattributes
|
||||||
|
@ -12,10 +12,9 @@ fonts+=("DejaVuSansMono")
|
|||||||
test -d "${fontdir}" || mkdir -p "${fontdir}"
|
test -d "${fontdir}" || mkdir -p "${fontdir}"
|
||||||
|
|
||||||
# Download fonts
|
# Download fonts
|
||||||
for font in "${fonts[@]}"
|
for font in "${fonts[@]}"; do
|
||||||
do
|
wget -q -O "/tmp/${font}.zip" "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/${font}.zip" && cd "${fontdir}" && unzip -u "/tmp/${font}.zip" && rm "/tmp/${font}.zip"
|
||||||
wget -q -O /tmp/${font}.zip "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/${font}.zip" && cd ${fontdir} && unzip -u /tmp/${font}.zip && rm /tmp/${font}.zip
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# Refresh cache
|
# Refresh cache
|
||||||
fc-cache --force --verbose ${fontdir}
|
fc-cache --force --verbose "${fontdir}"
|
||||||
|
5
os.bash
Normal file
5
os.bash
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
for file in os.d/*.bash; do
|
||||||
|
bash $file
|
||||||
|
done
|
@ -1,7 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if ( grep -q Ubuntu <(lsb_release -i) )
|
if (grep -q Ubuntu <(lsb_release -i)); then
|
||||||
then
|
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt upgrade -y
|
sudo apt upgrade -y
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user