2021-01-04 21:20:23 +01:00
# Headings
2020-10-23 22:15:25 +02:00
section() { printf "\n [1m [4m$1 [0m\n"; }
highlight() { printf " [1m [3m$1 [0m\n"; }
2021-01-04 21:20:23 +01:00
## System
2020-10-23 22:15:25 +02:00
section "System"
highlight "Default sudoers configuration"
2021-09-21 20:32:35 +00:00
echo 'Defaults editor=/usr/bin/nvim
2021-10-13 20:02:37 +02:00
Defaults env_keep="EDITOR"' |
sudo tee /etc/sudoers.d/editor
echo 'Defaults timestamp_timeout=120
Defaults passwd_timeout=30' |
sudo tee /etc/sudoers.d/timeout
2020-10-23 22:15:25 +02:00
highlight "password-free reboot"
2021-11-04 12:14:50 +01:00
echo "$USER ALL = NOPASSWD: /usr/bin/halt, /usr/bin/shutdown, /usr/bin/reboot, /usr/bin/poweroff, /bin/reboot, /bin/shutdown. /usr/bin/umount" |
2021-10-13 20:02:37 +02:00
sudo tee /etc/sudoers.d/shutdown
2020-10-23 22:15:25 +02:00
highlight "Default to current user in tty1,2,3"
2020-10-16 12:26:56 +02:00
sudo mkdir -p /etc/systemd/system/getty@tty1.service.d /etc/systemd/system/getty@tty2.service.d /etc/systemd/system/getty@tty3.service.d
echo "[Service]
ExecStart=
2021-10-13 20:02:37 +02:00
ExecStart=-/usr/bin/agetty --skip-login --login-options $USER %I" |
sudo tee /etc/systemd/system/getty@tty1.service.d/override.conf /etc/systemd/system/getty@tty2.service.d/override.conf /etc/systemd/system/getty@tty3.service.d/override.conf
2021-01-07 11:17:25 +01:00
2021-11-04 12:14:50 +01:00
highlight "Sysyadm setup"
test -d "/etc/yadm" || sy clone
2020-09-04 12:19:41 +02:00
## Software
2020-10-23 22:15:25 +02:00
section "Software"
2021-11-26 21:32:06 +01:00
link() {
test -e "$2" || $(checkacess -w "$2" || echo sudo) ln -sv "$@"
}
2021-11-04 12:14:50 +01:00
2021-11-07 05:56:01 +01:00
mkdir -p .config/audacity
find $HOME -maxdepth 1 -type l -exec file {} + |
grep '.local/share' | grep broken |
2021-11-26 21:24:24 +01:00
sed 's/.* //' | xargs -r mkdir -p
2021-11-07 05:56:01 +01:00
2021-11-26 21:24:24 +01:00
link python /usr/bin/python3
link fdfind /usr/bin/fd
link batcat /usr/bin/bat
2021-11-04 12:14:50 +01:00
link "$HOME/.ssh/config" "$XDG_CONFIG_HOME/ssh"
2020-06-03 12:39:13 +02:00
2021-11-04 12:14:50 +01:00
highlight "SSH Permissions"
chmod og= "$HOME/.ssh" -R
2021-07-12 10:42:55 +02:00
2021-11-04 12:14:50 +01:00
highlight "Cron"
2021-10-08 12:28:22 +02:00
echo 'cron.* /var/log/cron.log' | sudo tee /etc/rsyslog.d/60-cron.conf
hasService=$(which service 2>/dev/null)
test "$hasService" && sudo service rsyslog restart || sudo systemctl restart rsyslog
test "$hasService" && sudo service cron reload || sudo systemctl reload cronie
2021-11-04 12:14:50 +01:00
highlight "Zsh"
2021-11-26 21:24:24 +01:00
test -n "$ZSH" || export ZSH="${XDG_DATA_HOME:-$HOME/.local/state}/zsh/oh-my-zsh"
2021-11-04 12:14:50 +01:00
cloneshallow() {
2021-11-26 21:24:24 +01:00
url=https://github.com/$2/$1.git
2021-11-04 12:14:50 +01:00
dir="${3:-$ZSH/plugins/$1}"
mkdir -p "$(dirname $dir)"
if test -d "$dir"
then git -C "$dir" remote set-url origin $url
else git clone --depth=1 $url "$dir"
fi
}
cloneshallow oh-my-zsh robbyrussell "$ZSH"
cloneshallow powerlevel10k romkatv "$ZSH/themes/powerlevel10k"
cloneshallow fast-syntax-highlighting zdharma-continuum
cloneshallow zsh-autosuggestions zsh-users
cloneshallow zsh-vim-mode softmoth
case "$(grep "^$USER" /etc/passwd | sed 's/.*://')" in (*zsh);; (*) chsh -s $(which zsh);; esac
2021-10-08 12:28:22 +02:00
### Arch
2021-11-04 12:14:50 +01:00
highlight "Pacman"
2020-12-15 21:46:35 +01:00
if test -f /etc/pacman.conf; then
sudo sed -i 's/#Color/Color/' /etc/pacman.conf
sudo sed -i "$(grep -n "\[multilib\]" /etc/pacman.conf | cut -d':' -f1),+1 s/# *//" /etc/pacman.conf
highlight "Reflector"
echo "--save /etc/pacman.d/mirrorlist
--protocol https
--country Germany
--latest 20
--sort rate" | sudo tee /etc/xdg/reflector/reflector.conf
sudo systemctl start reflector &
sudo systemctl enable reflector.timer
fi
2021-01-07 12:01:57 +01:00
2021-10-08 12:28:22 +02:00
### Applications
2021-10-08 13:17:27 +02:00
test "$DISPLAY" || exit 0
2021-11-04 12:14:50 +01:00
highlight "Application symlinks"
link "$XDG_STATE_HOME/gradle/gradle.properties" "$XDG_CONFIG_HOME/gradle.properties"
link "$XDG_DATA_HOME/applications/signal-tray.desktop" "$XDG_CONFIG_HOME/autostart/"
link "/usr/share/applications/stretchly.desktop" "$XDG_CONFIG_HOME/autostart/"
mx="$HOME/.mixxx"
if ! test -d "$mx"
then mkdir "$mx" && ln -sv -t "$mx" ${XDG_DATA_HOME:-$HOME/.local/share}/mixxx/* ${XDG_CONFIG_HOME:-$HOME/.config}/mixxx/*
fi
2020-10-23 22:15:25 +02:00
highlight "Block internet at night & on weekdays in the morning to force focus"
2021-02-01 04:15:53 +01:00
walli 22 --save
2020-09-04 12:19:41 +02:00
2021-10-13 20:02:37 +02:00
highlight "Setup kakoune plugin loader"
2021-11-04 12:14:50 +01:00
cloneshallow plug.kak robertmeta "${XDG_CONFIG_HOME:-$HOME/.config}/kak/plugins/plug.kak"