Fedora-WS-AddBTRFSAssistant
This commit is contained in:
parent
0aa79e5571
commit
58bec73a50
1 changed files with 7 additions and 3 deletions
10
setup/fedora
10
setup/fedora
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
ver="2.8.2_fedora_git.tyleo.dev"
|
ver="2.8.3_fedora_git.tyleo.dev"
|
||||||
|
|
||||||
Arg1=$1
|
Arg1=$1
|
||||||
|
|
||||||
|
@ -11,7 +11,11 @@ clear
|
||||||
update-system-hostname() {
|
update-system-hostname() {
|
||||||
echo -n "Set a new Hostname : "
|
echo -n "Set a new Hostname : "
|
||||||
read NHostname
|
read NHostname
|
||||||
sudo hostnamectl set-hostname --static $NHostname
|
if [[ $NHostname = "" ]]; then
|
||||||
|
echo "No Change Applied, Current Hostname : $(hostname)"
|
||||||
|
else
|
||||||
|
sudo hostnamectl set-hostname --static $NHostname
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
update-system-packages() {
|
update-system-packages() {
|
||||||
|
@ -83,7 +87,7 @@ sudo fedora-third-party refresh
|
||||||
sudo dnf remove -y gnome-text-editor
|
sudo dnf remove -y gnome-text-editor
|
||||||
sudo dnf install -y gedit
|
sudo dnf install -y gedit
|
||||||
sudo dnf in -y "https://hst.tyleo.dev/packages/rpm/ocs-url_fc20.rpm"
|
sudo dnf in -y "https://hst.tyleo.dev/packages/rpm/ocs-url_fc20.rpm"
|
||||||
sudo dnf in -y lshw lshw-gui id3v2 switchdesk switchdesk-gui go ruby subfinder engrampa flatpak nmap nmtui gparted duf alien aria2 micro gnome-boxes ptyxis timeshift pwgen ncdu htop btop glances figlet fish zsh gimp openshot google-chrome-stable distrobox docker docker-compose gnome-software
|
sudo dnf in -y btrfs-assistant lshw lshw-gui id3v2 switchdesk switchdesk-gui go ruby subfinder engrampa flatpak nmap nmtui gparted duf alien aria2 micro gnome-boxes ptyxis timeshift pwgen ncdu htop btop glances figlet fish zsh gimp openshot google-chrome-stable distrobox docker docker-compose gnome-software
|
||||||
sudo dnf in -y gnome-tweaks
|
sudo dnf in -y gnome-tweaks
|
||||||
sudo dnf in -y ffmpeg
|
sudo dnf in -y ffmpeg
|
||||||
# YouTube Dler, Updater and Converter
|
# YouTube Dler, Updater and Converter
|
||||||
|
|
Loading…
Add table
Reference in a new issue