fixed config

This commit is contained in:
julien
2026-02-26 12:15:38 +01:00
parent 12eb2bfa81
commit 83d3b21b7f
8 changed files with 19 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
# Qubes OS
* template-pi.sh : Default template post-installation script
## template-pi.sh
Default template post-installation script.
```
$ sudo ./template-pi.sh
$ localectl set-locale fr_FR.UTF-8 ### Might be not necessary
```

View File

@@ -1,5 +1,14 @@
#!/bin/bash
# If root
ID=$(id -u)
if [ "$ID" -ne 0 ]
then
echo
echo "Please run as root!"
exit
fi
# RPM Fusion
dnf config-manager setopt rpmfusion-free.enabled=1
dnf config-manager setopt rpmfusion-free-updates.enabled=1
@@ -20,8 +29,8 @@ dnf install mozilla-ublock-origin
dnf install ffmpeg --allowerasing
# User configuration
mkdir -p /rw/usrlocal/etc/skel/.config
cp -r usrconfig/. /rw/usrlocal/etc/skel/.config/
mkdir -p /etc/skel
cp -r skel/. /etc/skel
# Set locale
localectl set-locale fr_FR.UTF-8