mirror of
https://github.com/Snigdha-OS/snigdhaos-system-installation.git
synced 2025-12-06 04:43:52 +01:00
33 lines
702 B
Bash
33 lines
702 B
Bash
#!/bin/bash
|
|
#!bin/bash
|
|
set -e
|
|
|
|
# Author : Eshan Roy <eshan@snigdhaos.or>
|
|
# Author URL : https://eshanized.github.io/
|
|
|
|
echo
|
|
echo "--->> Start snigdhaos-before <<---"
|
|
echo
|
|
|
|
echo
|
|
echo "Populating Develoer Keys..."
|
|
echo
|
|
|
|
pacman-key --init
|
|
pacman-key --populate snigdhaos
|
|
pacman-key --populate archlinux
|
|
pacman-key --populate chaotic
|
|
echo
|
|
|
|
if [ ! -f /tmp/systemd-boot ]; then
|
|
echo "Copy Snigdha OS Grub Theme..."
|
|
mkdir -p /boot/grub/themes
|
|
cp -Rf /usr/share/grub/themes/snigdhaos-grub-theme /boot/grub/themes/
|
|
fi
|
|
|
|
echo
|
|
echo "Setting Snigdha OS Arctic Preset..."
|
|
mv -v /etc/mkinitcpio.d/snigdhaos /etc/mkinitcpio.d/linux.preset
|
|
echo
|
|
echo "--->> End snigdhaos-before <<---"
|
|
echo |