12 lines
278 B
Bash
Executable file
12 lines
278 B
Bash
Executable file
#!/bin/bash
|
|
yay --noconfirm -Syu \
|
|
gcr \
|
|
webkit2gtk;
|
|
|
|
yay --noconfirm -Syu \
|
|
networkmanager-openconnect-git;
|
|
|
|
contextRoot="$(mktemp -d)";
|
|
git clone https://git.nuth.ch/manuth/arch-plasma-nm-sso.git "$contextRoot";
|
|
. "$contextRoot/install.sh";
|
|
rm -rf "$contextRoot";
|