10 lines
359 B
Bash
Executable File
10 lines
359 B
Bash
Executable File
#!/bin/sh
|
|
# set installer permissions
|
|
chmod 755 /usr/bin/install-peppermint
|
|
chmod 755 /usr/share/applications/Install-peppermint.desktop
|
|
f=Install-peppermint.desktop ; gio set -t string $f metadata::xfce-exe-checksum "$(sha256sum $f | awk '{print $1}')"
|
|
chmod 755 -R /boot/grub/themes
|
|
cd /opt
|
|
curl -LO https://calamares.io/deploycala.py
|
|
python3 deploycala.py
|