65 lines
2.6 KiB
Bash
65 lines
2.6 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if grep -E -q '^\[multilib\]$' /etc/pacman.conf; then
|
||
|
echo "Multilib Repository Already Enabled!"
|
||
|
else
|
||
|
echo "Enabling Multilib Repository (with sudo)..."
|
||
|
sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
|
||
|
fi
|
||
|
|
||
|
yay -Sy \
|
||
|
xf86-input-libinput \
|
||
|
bluez bluez-libs bluez-utils bluez-tools `# Bluetooth` \
|
||
|
arc-gtk-theme `# GTK Theme` \
|
||
|
elementary-icon-theme `# GUI File Explorer Icons` \
|
||
|
thunar thunar-volman gvfs `# GUI File Explorer + Volume Management/Auto-Mount Disks)` \
|
||
|
ttf-opensans ttf-dejavu ttf-liberation `# Fonts` \
|
||
|
avr-libc avr-gcc dfu-programmer dfu-util `# Keyboard Programming Utilities` \
|
||
|
xorg-xbacklight `# Xorg Backlight Control` \
|
||
|
gimp inkscape krita `# Image/Vector Editing Applications` \
|
||
|
audacity `# Audio Editing Application` \
|
||
|
accountsservice `# Mainly for User Avatars with Display Manager` \
|
||
|
deluge deluge-gtk cairo python-cairo `# GUI Torrent Client` \
|
||
|
gdm `# Display Manager of choice` \
|
||
|
pigz `# Multi-core gzipping` \
|
||
|
samba `# Sharing Files with other (Windows) PCs` \
|
||
|
gvfs-smb `# Auto-Detect Samba Shares` \
|
||
|
cmake `# Cross-Platform Make` \
|
||
|
elixir nodejs erlang rustup \
|
||
|
php `# PHP Language` \
|
||
|
nginx `# Web Server` \
|
||
|
postgresql pgcli `# RDBMS` \
|
||
|
neofetch `# swag` \
|
||
|
cloc `# For counting lines of code` \
|
||
|
noto-fonts noto-fonts-emoji `# Emoji` \
|
||
|
discord `# Chat` \
|
||
|
steam steamcmd lutris `# Games` \
|
||
|
gnome-shell `# Guh-nome Guh-shell` \
|
||
|
vlc `# Video Viewer` \
|
||
|
zathura zathura-pdf-mupdf `# Document Viewer` \
|
||
|
libinput libinput-gestures `# Trackpad Control` \
|
||
|
glu mesa wxgtk2 libpng `# Various` \
|
||
|
gammastep `# Redshift for Wayland` \
|
||
|
dmenu `# Application Launcher` \
|
||
|
python python-pip `# Python 3 Language` \
|
||
|
hexyl `# CLI Hex Viewer` \
|
||
|
firefox-developer-edition `# Default Web Browser` \
|
||
|
alsa-utils `# Audio Utilities` \
|
||
|
alsa-plugins `# Plugins for ALSA` \
|
||
|
pulseaudio pavucontrol pulsemixer `# Audio Backend and Controls` \
|
||
|
playerctl `# Media Keys Controls` \
|
||
|
feh `# Image Viewer & Wallpaper Manager` \
|
||
|
wlroots-git sway-git `# Wayland Compositor` \
|
||
|
swaylock-git swayidle-git `# Auto-Locking for Sway` \
|
||
|
kanshi-git `# Monitor Management for Sway` \
|
||
|
wofi-git `# Sway app launcher` \
|
||
|
waybar-git mako-git `# Sway Bar & Notifications` \
|
||
|
slurp grim wl-clipboard `# Sway Screen Selection & Clipping` \
|
||
|
pipewire pipewire-pulse libpipewire02 `# Pipewire` \
|
||
|
xdg-desktop-portal xdg-desktop-portal-wlr `# Screensharing` \
|
||
|
obs-studio-wayland obs-xdg-portal `# OBS` \
|
||
|
ttf-iosevka `# Primary Fonts` \
|
||
|
ttf-font-awesome `# Icon Font` \
|
||
|
diff-so-fancy `# Fancy Diffs` \
|
||
|
ripcord `# Discord and Slack Client`
|