You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
2.3 KiB

  1. #!/bin/bash
  2. if [[ $EUID -ne 0 ]]; then
  3. echo "This script must be run as root!" >&2
  4. exit 1
  5. fi
  6. echo "Taking fresh install snapshot..."
  7. btrfs subvolume snapshot -r / /.snapshots/@clean-install-snapshot
  8. echo "Setting up grup-btrfs..."
  9. systemctl enable --now grub-btrfsd.service
  10. grub-mkconfig -o /boot/grub/grub.cfg
  11. echo "Setting up pacman hooks..."
  12. if [[ ! -d "/etc/pacman.d/hooks/" ]]; then
  13. mkdir -p "/etc/pacman.d/hooks/"
  14. fi
  15. cat <<'EOF' > /etc/pacman.d/hooks/90-btrfs-snapshot.hook
  16. [Trigger]
  17. Type = Package
  18. Operation = Install
  19. Operation = Upgrade
  20. Operation = Remove
  21. Target = linux
  22. Target = linux-lts
  23. Target = intel-ucode
  24. Target = grub
  25. [Action]
  26. Description = Creating BTRFS snapshot before system upgrade
  27. When = PreTransaction
  28. Exec = /usr/bin/bash -c '/usr/bin/btrfs subvolume snapshot / /.snapshots/@root-snapshot-$(date +%Y-%m-%d-%H-%M)'
  29. AbortOnFail
  30. EOF
  31. cat <<'EOF' > /etc/pacman.d/hooks/91-grub-mkconfig.hook
  32. [Trigger]
  33. Type = Package
  34. Operation = Install
  35. Operation = Upgrade
  36. Operation = Remove
  37. Target = linux
  38. Target = linux-lts
  39. Target = intel-ucode
  40. Target = grub
  41. [Action]
  42. Description = Update grub cfg so it can boot from new snapshots
  43. When = PostTransaction
  44. Exec = /usr/bin/bash -c '/usr/bin/grub-mkconfig -o /boot/grub/grub.cfg'
  45. EOF
  46. echo "Cloning repos..."
  47. git clone https://git.tovijaeschke.xyz/tovi/dmenu.git /usr/local/src/dmenu
  48. git clone https://git.tovijaeschke.xyz/tovi/dwm.git /usr/local/src/dwm
  49. git clone https://git.tovijaeschke.xyz/tovi/dwmblocks.git /usr/local/src/dwmblocks
  50. git clone https://git.tovijaeschke.xyz/tovi/st.git /usr/local/src/st
  51. git clone https://github.com/neovim/neovim /usr/local/src/neovim
  52. echo "Building dmenu..."
  53. cd /usr/local/src/dmenu/
  54. make
  55. make install
  56. make clean
  57. echo "Building dwm..."
  58. cd /usr/local/src/dwm/
  59. make
  60. make install
  61. make clean
  62. echo "Building dwmblocks..."
  63. cd /usr/local/src/dwmblocks/
  64. make
  65. make install
  66. make clean
  67. echo "Building st..."
  68. cd /usr/local/src/st/
  69. make
  70. make install
  71. make clean
  72. echo "Building neovim..."
  73. cd /usr/local/src/st/
  74. make CMAKE_BUILD_TYPE=RelWithDebInfo
  75. make install
  76. echo "Building yay..."
  77. git clone https://aur.archlinux.org/yay.git /opt/yay/
  78. cd /opt/yay
  79. makepkg -si
  80. echo "Cloning dotfiles..."
  81. echo "Enabling networkmanager service..."
  82. systemctl enable NetworkManager
  83. echo "Taking post install script snapshot..."
  84. btrfs subvolume snapshot -r / /.snapshots/@post-install-snapshot