mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
15 lines
239 B
Bash
Executable File
15 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
|
|
printf "Beginning upgrade.\\n"
|
|
|
|
if ! command -v paru &> /dev/null; then
|
|
yay -Syu
|
|
else
|
|
paru -Syu
|
|
fi
|
|
|
|
pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
|
|
|
|
printf "\\nUpgrade complete.\\nPress <Enter> to exit window.\\n\\n"
|
|
read -r _
|