91 lines
3.5 KiB
Plaintext
Executable File
91 lines
3.5 KiB
Plaintext
Executable File
# Headings
|
||
section() { printf "\n[1m[4m$1[0m\n"; }
|
||
highlight() { printf "[1m[3m$1[0m\n"; }
|
||
|
||
## System
|
||
section "System"
|
||
|
||
highlight "Enable REISUB and increase watch limit for Intellij & co"
|
||
echo "kernel.sysrq=1" | sudo tee /etc/sysctl.d/60-sysrq.conf
|
||
echo "fs.inotify.max_user_watches=800000" | sudo tee /etc/sysctl.d/60-max-user-watches.conf
|
||
sudo sysctl --system
|
||
|
||
highlight "Default sudoers configuration"
|
||
echo "Defaults editor=/usr/bin/nvim" | sudo tee /etc/sudoers.d/editor
|
||
echo "Defaults timestamp_timeout=120" | sudo tee /etc/sudoers.d/timeout
|
||
highlight "password-free reboot"
|
||
echo "$USER ALL = NOPASSWD: /sbin/halt, /sbin/reboot, /usr/sbin/reboot, /sbin/poweroff, /usr/sbin/shutdown" | sudo tee /etc/sudoers.d/shutdown
|
||
|
||
highlight "Reduce system startup & shutdown timeout"
|
||
sudo mkdir -p /etc/systemd/system.conf.d /etc/systemd/user.conf.d
|
||
echo "[Manager]
|
||
DefaultTimeoutStartSec=5s
|
||
DefaultTimeoutStopSec=10s" | sudo tee /etc/systemd/system.conf.d/boot.conf /etc/systemd/user.conf.d/boot.conf
|
||
|
||
highlight "Default to current user in tty1,2,3"
|
||
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=
|
||
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
|
||
|
||
highlight '/etc/locale.conf'
|
||
echo 'LANG=en_IE.UTF-8
|
||
LANGUAGE=en_IE.UTF-8
|
||
LC_ALL=en_IE.UTF-8
|
||
LC_MONETARY=de_DE.UTF-8
|
||
LC_COLLATE=C' | sudo tee /etc/locale.conf
|
||
|
||
## Hardware
|
||
section 'Hardware'
|
||
|
||
highlight 'Stop logind from suspending laptop'
|
||
sudo sed -i 's/#HandleLidSwitch=suspend/HandleLidSwitch=ignore/' /etc/systemd/logind.conf
|
||
|
||
highlight "Fix Chrysalis for keyboardio"
|
||
# https://github.com/keyboardio/Chrysalis/wiki/Troubleshooting
|
||
if test ! -f /etc/udev/rules.d/keyboardio.rules; then
|
||
echo 'SUBSYSTEM=="tty", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="230[0-3]", SYMLINK+="model01", TAG+="seat", TAG+="uaccess", RUN+="'"$HOME/.local/bin/update-keyboard-layout\"" | sudo tee /etc/udev/rules.d/keyboardio.rules
|
||
sudo udevadm control -R
|
||
sudo udevadm trigger -v /dev/ttyACM0
|
||
#sudo systemctl disable ModemManager
|
||
fi
|
||
|
||
## Software
|
||
section "Software"
|
||
|
||
highlight "Configure pacman"
|
||
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
|
||
|
||
highlight "Mixxx symlinks"
|
||
mkdir -p ~/.mixxx
|
||
ln -s -t ~/.mixxx ${XDG_DATA_HOME:-$HOME/.local/share}/mixxx/* ${XDG_CONFIG_HOME:-$HOME/.config}/mixxx/*
|
||
|
||
highlight "Block internet at night & on weekdays in the morning to force focus"
|
||
walli 22 --save
|
||
|
||
highlight "Cron logging"
|
||
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
|
||
|
||
highlight "Reload cron"
|
||
test "$hasService" && sudo service cron reload || sudo systemctl reload cronie
|
||
|
||
highlight "SSH Permissions"
|
||
chmod og= ~/.ssh -R
|
||
|
||
highlight "Setup kakoune for plugins"
|
||
mkdir -p ~/.config/kak/plugins/
|
||
git clone https://github.com/robertmeta/plug.kak.git ~/.config/kak/plugins/plug.kak
|