Added better commenting & more bloat removal
This commit is contained in:
parent
d393b13b65
commit
50834b1222
1 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# -- Arch Linux Installer Script -- #
|
# -- Arch Linux Installer Script -- #
|
||||||
|
|
||||||
# Functions
|
# Desktop Specific #
|
||||||
|
## Gnome ##
|
||||||
gnome_install() {
|
gnome_install() {
|
||||||
# All System Commands
|
# All System Commands
|
||||||
SYS_INSTALL='sudo pacman -Sy --noconfirm'
|
SYS_INSTALL='sudo pacman -Sy --noconfirm'
|
||||||
|
@ -13,7 +14,6 @@ gnome_install() {
|
||||||
# Installing FLH Apps
|
# Installing FLH Apps
|
||||||
$FLH_INSTALL flathub ar.xjuan.Cambalache
|
$FLH_INSTALL flathub ar.xjuan.Cambalache
|
||||||
$FLH_INSTALL flathub net.nokyan.Resources
|
$FLH_INSTALL flathub net.nokyan.Resources
|
||||||
$FLH_INSTALL flathub io.github.giantpinkrobots.varia
|
|
||||||
}
|
}
|
||||||
gnome_debloat() {
|
gnome_debloat() {
|
||||||
# All System Commands
|
# All System Commands
|
||||||
|
@ -21,6 +21,7 @@ gnome_debloat() {
|
||||||
|
|
||||||
# Bloat Programs
|
# Bloat Programs
|
||||||
$SYS_REMOVE gnome-music
|
$SYS_REMOVE gnome-music
|
||||||
|
$SYS_REMOVE gnome-system-monitor
|
||||||
}
|
}
|
||||||
gnome_system() {
|
gnome_system() {
|
||||||
# Custom UI settings
|
# Custom UI settings
|
||||||
|
@ -44,7 +45,11 @@ gnome() {
|
||||||
gnome_system
|
gnome_system
|
||||||
gnome_themes
|
gnome_themes
|
||||||
}
|
}
|
||||||
|
## KDE Plasma ##
|
||||||
|
|
||||||
|
## HYPRLAND ##
|
||||||
|
|
||||||
|
# Functions
|
||||||
install_yay() {
|
install_yay() {
|
||||||
# System Install Command
|
# System Install Command
|
||||||
SYS_INSTALL='sudo pacman -S --noconfirm'
|
SYS_INSTALL='sudo pacman -S --noconfirm'
|
||||||
|
|
Loading…
Reference in a new issue