-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1-dnf.sh
executable file
·54 lines (47 loc) · 1.24 KB
/
1-dnf.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
echo 'defaultyes=True' | sudo tee -a /etc/dnf/dnf.conf
echo 'max_parallel_downloads=4' | sudo tee -a /etc/dnf/dnf.conf
# Enable RPM Fusion
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
sudo dnf config-manager setopt fedora-cisco-openh264.enabled=1
# TUI based git client
sudo dnf copr enable atim/lazygit -y
# Updates
sudo dnf upgrade -y
# Nvidia and Multimedia Configuration
sudo dnf install -y akmod-nvidia nvidia-vaapi-driver libva-utils vdpauinfo libva-nvidia-driver
sudo dnf swap -y ffmpeg-free ffmpeg --allowerasing
# remove unwanted software
sudo dnf remove -y geary
# Useful packages
sudo dnf install -y \
adw-gtk3-theme \
btop \
cloc \
chromium \
cmake \
fastfetch \
fd \
flameshot \
g++ \
gnome-pomodoro \
gnome-shell-extension-caffeine \
gnome-tweaks \
hunspell-de \
kitty \
lazygit \
mpv \
neovim \
nextcloud-client \
npm \
prename \
ripgrep \
stow \
tldr \
trash-cli \
util-linux \
wl-clipboard \
zoxide \
zsh \
zsh-autosuggestions \
zsh-syntax-highlighting
reboot