Compare commits

..

No commits in common. "3f056ed14c31911516a864c08099d23197d088c3" and "a06af42be30882ef3562c6598de33853cccca375" have entirely different histories.

2 changed files with 20 additions and 14 deletions

View File

@ -2,16 +2,23 @@
gpgcheck=1 gpgcheck=1
# 3 is the default, increase this in case of kernel upgrade trouble (unrelated # 3 is the default, increase this in case of kernel upgrade trouble (unrelated
# to space, see dracut.conf.d for that) # to space, see dracut.conf.d for that)
#installonly_limit=3 installonly_limit=3
clean_requirements_on_remove=True clean_requirements_on_remove=True
best=False best=False
skip_if_unavailable=True skip_if_unavailable=True
# Find the mirror with the lowest ping. While this might be the closest # Fedora 40
# mirror, this won't consider the available bandwidth which may result into # https://fedoraproject.org/wiki/Changes/Drop_Delta_RPMs
# slower downloads than the order Fedora provides servers in when this is # Consider `sudo dnf install python3-dnf-plugin-cow` instead on 40+ and CoW
# disabled. # filesystem (btrfs, maybe xfs (untested)). Fallback likely slows down ext4.
fastestmirror=true # https://fedoraproject.org/wiki/Changes/RPMCoW
deltarpm=False
# Explicitly enable finding the fastest mirror
# NOTE! This actually measures based on ping instead of available bandwitdh
# and the Fedora infrastructure is already giving most suited mirrors, so
# enabling this may lead to worse performance.
#fastestmirror=true
# default 3, max 20, often suggested 10. I am not sure high numbers bring # default 3, max 20, often suggested 10. I am not sure high numbers bring
# benefit, but double seems fine # benefit, but double seems fine

15
install
View File

@ -17,22 +17,22 @@ cat rc/bashrc > ~/.bashrc
cat conf/tmux.conf > ~/.tmux.conf cat conf/tmux.conf > ~/.tmux.conf
cat rc/zshrc > ~/.zshrc cat rc/zshrc > ~/.zshrc
cat rc/profile > ~/.profile cat rc/profile > ~/.profile
mkdir -vp ~/.config/git mkdir -p ~/.config/git
cat conf/gitconfig > ~/.config/git/config cat conf/gitconfig > ~/.config/git/config
touch ~/.gitconfig touch ~/.gitconfig
rm ~/.gitconfig rm ~/.gitconfig
ln -nsfv ~/.config/git/config ~/.gitconfig ln -nsfv ~/.config/git/config ~/.gitconfig
mkdir -vp ~/.git-template mkdir -p ~/.git-template
cat rc/vimrc > ~/.vimrc cat rc/vimrc > ~/.vimrc
mkdir -vp ~/.config/nvim/ mkdir -p ~/.config/nvim/
cat conf/init.vim > ~/.config/nvim/init.vim cat conf/init.vim > ~/.config/nvim/init.vim
cat conf/makepkg.conf > ~/.makepkg.conf cat conf/makepkg.conf > ~/.makepkg.conf
mkdir -vp ~/.config/mpv/ mkdir -p ~/.config/mpv/
cat conf/mpv.conf > ~/.config/mpv/mpv.conf cat conf/mpv.conf > ~/.config/mpv/mpv.conf
if [ ! -f ~/.oidentd.conf ]; then if [ ! -f ~/.oidentd.conf ]; then
cat conf/oidentd.conf > ~/.oidentd.conf cat conf/oidentd.conf > ~/.oidentd.conf
fi fi
mkdir -vp ~/.gnupg mkdir -p ~/.gnupg
cat gpg/gpg.conf > ~/.gnupg/gpg.conf cat gpg/gpg.conf > ~/.gnupg/gpg.conf
cat gpg/gpg-agent.conf > ~/.gnupg/gpg-agent.conf cat gpg/gpg-agent.conf > ~/.gnupg/gpg-agent.conf
cat gpg/dirmngr.conf > ~/.gnupg/dirmngr.conf cat gpg/dirmngr.conf > ~/.gnupg/dirmngr.conf
@ -40,11 +40,10 @@ killall -HUP dirmngr
#cat rc/xinitrc > ~/.xinitrc #cat rc/xinitrc > ~/.xinitrc
cat conf/pastebinit.xml > ~/.pastebinit.xml cat conf/pastebinit.xml > ~/.pastebinit.xml
cat conf/Xresources > ~/.Xresources cat conf/Xresources > ~/.Xresources
mkdir -vp ~/.inxi mkdir -p ~/.inxi
cat conf/inxi.conf > ~/.inxi/inxi.conf cat conf/inxi.conf > ~/.inxi/inxi.conf
gpg --quiet --import .mikaela/keys/*.asc & gpg --quiet --import .mikaela/keys/*.asc &
mkdir -vp ~/.ssh/sockets/ mkdir -p ~/.ssh/sockets/
mkdir -vp ~/.local/bin/
chmod a+xr chmod chmod a+xr chmod
bash -x ./chmod & bash -x ./chmod &
git submodule update --init & git submodule update --init &