19 lines
526 B
Bash
19 lines
526 B
Bash
#!/bin/bash
|
|
|
|
# Localization
|
|
sudo dnf install langpacks-en langpacks-fr
|
|
localectl set-locale fr_FR.UTF-8
|
|
|
|
# Ad Blocker
|
|
sudo dnf install mozilla-ublock-origin
|
|
|
|
# Codecs
|
|
sudo dnf --enablerepo=rpmfusion-free --enablerepo=rpmfusion-free-updates --enablerepo=rpmfusion-nonfree --enablerepo=rpmfusion-nonfree-updates install ffmpeg --allowerasing
|
|
|
|
# MPV
|
|
sudo dnf install mpv
|
|
sudo echo -e "# Qubes performance settings\nprofile=sw-fast\nvo=x11\n" > /etc/mpv/mpv.conf
|
|
|
|
# Software
|
|
sudo dnf install gimp inkscape libreoffice qbittorrent
|