43 lines
1.0 KiB
Bash
Executable File
43 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# RPM Fusion
|
|
dnf config-manager setopt rpmfusion-free.enabled=1
|
|
dnf config-manager setopt rpmfusion-free-updates.enabled=1
|
|
dnf config-manager setopt rpmfusion-nonfree.enabled=1
|
|
dnf config-manager setopt rpmfusion-nonfree-updates.enabled=1
|
|
dnf upgrade --refresh
|
|
|
|
# RPM Fusion Tainted repos
|
|
dnf install rpmfusion-free-release-tainted rpmfusion-nonfree-release-tainted
|
|
|
|
# Localization packages
|
|
dnf install langpacks-en langpacks-fr
|
|
|
|
# Ad Blocker
|
|
dnf install mozilla-ublock-origin
|
|
|
|
# Codecs
|
|
dnf install ffmpeg --allowerasing
|
|
|
|
# User configuration
|
|
mkdir -p /rw/usrlocal/etc/skel/.config
|
|
cp -r usrconfig/. /rw/usrlocal/etc/skel/.config/
|
|
|
|
# Set locale
|
|
localectl set-locale fr_FR.UTF-8
|
|
|
|
# MPV
|
|
dnf install mpv
|
|
mkdir -p /rw/usrlocal/etc/mpv
|
|
cp mpv.conf /rw/usrlocal/etc/mpv/
|
|
|
|
# Firefox configuration
|
|
mkdir -p /rw/usrlocal/etc/firefox/policies
|
|
cp policies.json /rw/usrlocal/etc/firefox/policie/
|
|
|
|
# Software
|
|
dnf install alacritty gimp inkscape libreoffice qbittorrent
|
|
|
|
# Development
|
|
dnf install helix php-cli php-pdo composer sqlite
|