1d9fda8826
since the variable is not being used again, "_" wil suffice, "line" as the name would also be valid.
9 lines
172 B
Bash
Executable file
9 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
|
|
printf "Beginning upgrade.\\n"
|
|
|
|
yay -Syu
|
|
pkill -RTMIN+8 "${STATUSBAR:-dwmblocks}"
|
|
|
|
printf "\\nUpgrade complete.\\nPress <Enter> to exit window.\\n\\n"
|
|
read -r _
|