mirror of
https://github.com/xsghetti/script.git
synced 2025-01-23 01:26:08 -05:00
9 lines
259 B
Bash
9 lines
259 B
Bash
|
#!/bin/bash
|
||
|
echo ":: Installing Grub Theme"
|
||
|
cd ..
|
||
|
git clone https://github.com/catppuccin/grub.git && cd grub
|
||
|
sudo cp -r ~/script/src/catppuccin-mocha/ /usr/share/grub/themes/
|
||
|
sudo cp ~/script/src/grub /etc/default/
|
||
|
sudo grub-mkconfig -o /boot/grub/grub.cfg
|
||
|
|