16 lines
407 B
Bash
Executable file
16 lines
407 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo 'Installing graphical applications...'
|
|
sudo dnf install -y \
|
|
kitty firefox keepassxc nextcloud-client
|
|
|
|
echo 'Installing extended graphical applications...'
|
|
sudo dnf install -y \
|
|
nautilus gparted thunderbird filezilla libreoffice \
|
|
ibus-uniemoji mpv mumble
|
|
|
|
# Install gaming
|
|
#sudo dnf install -y \
|
|
# steam lutris gamemode
|
|
|
|
sudo systemctl set-default graphical.target
|