mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
* Get rid of -Sy and -Syy * Get rid of all naked -Sy usage * Don't need a full system update for this * Combine * Does not need a full system update * Need to refresh even just for Omarchy repository * Does not warrant a full system update * No longer need the sudoless pacman runs * We have already added the Omarchy repo before getting to here So fine to just do a straight install
9 lines
262 B
Bash
Executable File
9 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Adding multilib repository for 32-bit compatibility"
|
|
sudo sed -i '/^\s*#\[multilib\]/,/^$/{s/^\s*#//}' /etc/pacman.conf
|
|
|
|
echo "Now pick dependencies matching your graphics card"
|
|
sudo pacman -Syu steam
|
|
setsid gtk-launch steam >/dev/null 2>&1 &
|